-
Notifications
You must be signed in to change notification settings - Fork 1.2k
docs: revamp exchange files example #1343
Changes from 6 commits
55baeec
392dc16
82d87bb
bd55179
7283390
d4a99ab
54ed3e0
ff5dc38
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,16 @@ | |
"version": "0.0.0", | ||
"scripts": { | ||
"bundle": "browserify public/app.js > public/bundle.js", | ||
"dev": "npm run bundle && npm run start", | ||
"start": "http-server -c-1 -p 12345 public" | ||
"start": "http-server -c-1 -p 12345 public", | ||
"dev": "npm run bundle && npm run start" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"browserify": "^14.4.0", | ||
"http-server": "~0.10.0" | ||
"browserify": "^16.2.0", | ||
"http-server": "^0.11.1" | ||
}, | ||
"dependencies": { | ||
"stream-buffers": "^3.0.1", | ||
"ipfs": "file:../../" | ||
"ipfs": "file:../../", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can this be a particular version of IPFS that's already published? We might not update this example as fast as changes to master and we might accidentally break it. It also means that to run the example the user has to run There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, good catch! I'll lock it in 0.28.2 👍 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a new one released 0.29.0 \o/ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ohhh yeah!!! 🎉 |
||
"stream-buffers": "^3.0.1" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[email protected]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since, this line will hopefully be wrong in a while.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, thanks Vasco!