Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ipfs-inactive/js-ipfs-http-client
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 39219d302f72
Choose a base ref
...
head repository: ipfs-inactive/js-ipfs-http-client
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5bccbb6758e7
Choose a head ref
  • 8 commits
  • 21 files changed
  • 2 contributors

Commits on Nov 19, 2015

  1. Copy the full SHA
    6aa4bbb View commit details
  2. Copy the full SHA
    2367adc View commit details
  3. Copy the full SHA
    7bbb9be View commit details
  4. chore: build

    dignifiedquire committed Nov 19, 2015
    Copy the full SHA
    fe1b0d2 View commit details
  5. Copy the full SHA
    94f8a39 View commit details
  6. Copy the full SHA
    2bbbf6c View commit details
  7. fix: Downgrade babel-runtime to v5

    This is needed because of https://phabricator.babeljs.io/T6644.
    dignifiedquire committed Nov 19, 2015
    Copy the full SHA
    3d593fa View commit details
  8. Merge pull request #127 from Dignifiedquire/style-cleanup

    style cleanup + browser build fix
    daviddias committed Nov 19, 2015
    Copy the full SHA
    5bccbb6 View commit details
Showing with 608 additions and 691 deletions.
  1. +4 −1 .eslintrc
  2. +306 −438 dist/ipfsapi.js
  3. +15 −15 dist/ipfsapi.min.js
  4. +7 −5 gulpfile.js
  5. +11 −11 karma.conf.js
  6. +3 −1 package.json
  7. +5 −3 src/config.js
  8. +14 −12 src/get-files-stream.js
  9. +32 −30 src/index.js
  10. +3 −3 src/request-api.js
  11. +6 −4 tasks/build.js
  12. +9 −0 tasks/config.js
  13. +21 −19 tasks/daemons.js
  14. +5 −3 tasks/lint.js
  15. +12 −10 tasks/test.js
  16. +5 −5 test/test-folder/add.js
  17. +2 −2 test/test-folder/cat.js
  18. +5 −3 test/test-folder/ipfs-add.js
  19. +2 −2 test/test-folder/ls.js
  20. +1 −1 test/test-folder/version.js
  21. +140 −123 test/tests.js
5 changes: 4 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"parser": "babel-eslint",
"extends": "standard"
"extends": "standard",
"rules": {
"no-var": 2
}
}
Loading