This repository was archived by the owner on Jan 12, 2024. It is now read-only.
File tree 13 files changed +26
-13
lines changed
browser-http-client-upload-file
browser-sharing-node-across-tabs
http-client-bundle-webpack 13 files changed +26
-13
lines changed Original file line number Diff line number Diff line change 8
8
"bundle" : " browserify src/index.js > public/bundle.js" ,
9
9
"serve" : " http-server public -a 127.0.0.1 -p 8888" ,
10
10
"start" : " npm run bundle && npm run serve" ,
11
- "clean" : " rm -rf public/bundle.js" ,
11
+ "clean" : " rimraf public/bundle.js" ,
12
12
"test" : " test-ipfs-example"
13
13
},
14
14
"keywords" : [],
19
19
"execa" : " ^4.0.3" ,
20
20
"http-server" : " ^0.12.3" ,
21
21
"ipfs" : " ^0.52.1" ,
22
+ "rimraf" : " ^3.0.2" ,
22
23
"test-ipfs-example" : " ^2.0.3"
23
24
},
24
25
"browser" : {
Original file line number Diff line number Diff line change 12
12
"tachyons" : " ^4.11.1"
13
13
},
14
14
"devDependencies" : {
15
+ "rimraf" : " ^3.0.2" ,
15
16
"test-ipfs-example" : " ^2.0.3"
16
17
},
17
18
"scripts" : {
18
19
"start" : " react-scripts start" ,
19
20
"build" : " react-scripts build" ,
20
21
"eject" : " react-scripts eject" ,
21
22
"test" : " test-ipfs-example" ,
22
- "clean" : " rm -rf ./build"
23
+ "clean" : " rimraf ./build"
23
24
},
24
25
"eslintConfig" : {
25
26
"extends" : " react-app"
Original file line number Diff line number Diff line change 3
3
"version" : " 1.0.0" ,
4
4
"private" : true ,
5
5
"scripts" : {
6
- "clean" : " rm -rf public/bundle.js" ,
6
+ "clean" : " rimraf public/bundle.js" ,
7
7
"bundle" : " browserify public/app.js > public/bundle.js" ,
8
8
"start" : " http-server -c-1 -p 12345 public" ,
9
9
"dev" : " npm run bundle && npm run start" ,
20
20
"dependencies" : {
21
21
"ipfs" : " ^0.52.1" ,
22
22
"it-all" : " ^1.0.4" ,
23
+ "rimraf" : " ^3.0.2" ,
23
24
"test-ipfs-example" : " ^2.0.3"
24
25
},
25
26
"browser" : {
Original file line number Diff line number Diff line change 4
4
"description" : " Upload file to IPFS via browser using js-ipfs-http-client with Webpack" ,
5
5
"private" : true ,
6
6
"scripts" : {
7
- "clean" : " rm -rf ./dist" ,
7
+ "clean" : " rimraf ./dist" ,
8
8
"build" : " parcel build index.html --public-url '.'" ,
9
9
"start" : " parcel index.html" ,
10
10
"test" : " test-ipfs-example"
22
22
"parcel-bundler" : " ^1.12.4" ,
23
23
"react" : " ^16.8.6" ,
24
24
"react-dom" : " ^16.8.6" ,
25
+ "rimraf" : " ^3.0.2" ,
25
26
"test-ipfs-example" : " ^2.0.3"
26
27
},
27
28
"browserslist" : [
Original file line number Diff line number Diff line change 5
5
"main" : " index.js" ,
6
6
"private" : true ,
7
7
"scripts" : {
8
- "clean" : " rm -rf ./dist" ,
8
+ "clean" : " rimraf ./dist" ,
9
9
"build" : " webpack" ,
10
10
"start" : " npm run build && http-server dist -a 127.0.0.1 -p 8888" ,
11
11
"test" : " test-ipfs-example"
15
15
"devDependencies" : {
16
16
"html-webpack-plugin" : " ^3.2.0" ,
17
17
"http-server" : " ^0.12.3" ,
18
+ "rimraf" : " ^3.0.2" ,
18
19
"terser-webpack-plugin" : " ^1.2.1" ,
19
20
"test-ipfs-example" : " ^2.0.3" ,
20
21
"webpack" : " ^4.43.0" ,
Original file line number Diff line number Diff line change 8
8
" last 2 Chrome versions"
9
9
],
10
10
"scripts" : {
11
- "clean" : " rm -rf ./dist" ,
11
+ "clean" : " rimraf ./dist" ,
12
12
"lint" : " standard public/**/*.js" ,
13
13
"start" : " parcel public/index.html" ,
14
14
"build" : " parcel build public/index.html --public-url ./" ,
28
28
"babel-plugin-transform-regenerator" : " ^6.26.0" ,
29
29
"babel-polyfill" : " ^6.26.0" ,
30
30
"parcel-bundler" : " ^1.12.4" ,
31
+ "rimraf" : " ^3.0.2" ,
31
32
"standard" : " ^13.1.0" ,
32
33
"test-ipfs-example" : " ^2.0.3"
33
34
}
Original file line number Diff line number Diff line change 5
5
"version" : " 2.0.1" ,
6
6
"private" : true ,
7
7
"scripts" : {
8
- "clean" : " rm -rf ./dist" ,
8
+ "clean" : " rimraf ./dist" ,
9
9
"build" : " webpack" ,
10
10
"start" : " npm run build && http-server dist -a 127.0.0.1 -p 8888" ,
11
11
"test" : " test-ipfs-example"
15
15
"devDependencies" : {
16
16
"html-webpack-plugin" : " ^3.2.0" ,
17
17
"http-server" : " ^0.12.3" ,
18
+ "rimraf" : " ^3.0.2" ,
18
19
"terser-webpack-plugin" : " ^1.2.1" ,
19
20
"test-ipfs-example" : " ^2.0.3" ,
20
21
"webpack" : " ^4.43.0"
Original file line number Diff line number Diff line change 4
4
"version" : " 1.0.0" ,
5
5
"private" : true ,
6
6
"scripts" : {
7
- "clean" : " rm -rf ./dist" ,
7
+ "clean" : " rimraf ./dist" ,
8
8
"build" : " webpack" ,
9
9
"start" : " node server.js" ,
10
10
"test" : " test-ipfs-example"
16
16
"@babel/preset-env" : " ^7.3.1" ,
17
17
"babel-loader" : " ^8.0.5" ,
18
18
"copy-webpack-plugin" : " ^5.0.4" ,
19
+ "rimraf" : " ^3.0.2" ,
19
20
"test-ipfs-example" : " ^2.0.3" ,
20
21
"webpack" : " ^4.43.0" ,
21
22
"webpack-cli" : " ^3.3.11" ,
Original file line number Diff line number Diff line change 3
3
"version" : " 1.0.0" ,
4
4
"private" : true ,
5
5
"scripts" : {
6
- "clean" : " rm -rf ./dist" ,
6
+ "clean" : " rimraf ./dist" ,
7
7
"serve" : " vue-cli-service serve" ,
8
8
"build" : " vue-cli-service build" ,
9
9
"lint" : " vue-cli-service lint" ,
21
21
"babel-eslint" : " ^10.1.0" ,
22
22
"eslint" : " ^6.8.0" ,
23
23
"eslint-plugin-vue" : " ^6.2.1" ,
24
+ "rimraf" : " ^3.0.2" ,
24
25
"test-ipfs-example" : " ^2.0.3" ,
25
26
"vue-template-compiler" : " ^2.6.11"
26
27
},
Original file line number Diff line number Diff line change 4
4
"version" : " 1.1.1" ,
5
5
"private" : true ,
6
6
"scripts" : {
7
- "clean" : " rm -rf ./dist" ,
7
+ "clean" : " rimraf ./dist" ,
8
8
"build" : " webpack" ,
9
9
"start" : " node server.js" ,
10
10
"test" : " test-ipfs-example"
20
20
"react" : " ^16.8.6" ,
21
21
"react-dom" : " ^16.8.6" ,
22
22
"react-hot-loader" : " ^4.12.21" ,
23
+ "rimraf" : " ^3.0.2" ,
23
24
"test-ipfs-example" : " ^2.0.3" ,
24
25
"webpack" : " ^4.43.0" ,
25
26
"webpack-cli" : " ^3.3.11" ,
Original file line number Diff line number Diff line change 5
5
"main" : " index.js" ,
6
6
"private" : true ,
7
7
"scripts" : {
8
- "clean" : " rm -rf ./dist" ,
8
+ "clean" : " rimraf ./dist" ,
9
9
"build" : " parcel build index.html --public-url '.'" ,
10
10
"start" : " parcel index.html" ,
11
11
"deploy" : " ipfs add -r --quieter dist" ,
24
24
"ipfs-css" : " ^0.13.1" ,
25
25
"ipfs-http-client" : " ^48.1.1" ,
26
26
"parcel-bundler" : " ^1.12.4" ,
27
+ "rimraf" : " ^3.0.2" ,
27
28
"tachyons" : " ^4.11.1" ,
28
29
"test-ipfs-example" : " ^2.0.3"
29
30
},
Original file line number Diff line number Diff line change 4
4
"description" : " Bundle js-ipfs-http-client with Webpack" ,
5
5
"private" : true ,
6
6
"scripts" : {
7
- "clean" : " rm -rf ./dist" ,
7
+ "clean" : " rimraf ./dist" ,
8
8
"build" : " webpack" ,
9
9
"start" : " node server.js" ,
10
10
"test" : " test-ipfs-example"
27
27
"ipfs" : " ^0.52.1" ,
28
28
"ipfsd-ctl" : " ^7.0.2" ,
29
29
"react-hot-loader" : " ^4.12.21" ,
30
+ "rimraf" : " ^3.0.2" ,
30
31
"test-ipfs-example" : " ^2.0.3" ,
31
32
"webpack" : " ^4.43.0" ,
32
33
"webpack-dev-server" : " ^3.11.0"
Original file line number Diff line number Diff line change 5
5
"main" : " index.js" ,
6
6
"private" : true ,
7
7
"scripts" : {
8
- "clean" : " rm -rf ./dist" ,
8
+ "clean" : " rimraf ./dist" ,
9
9
"build" : " parcel build index.html --public-url '.'" ,
10
10
"start" : " parcel index.html -p 8888" ,
11
11
"test" : " test-ipfs-example"
20
20
"go-ipfs" : " ^0.7.0" ,
21
21
"ipfsd-ctl" : " ^7.0.2" ,
22
22
"parcel-bundler" : " ^1.12.4" ,
23
+ "rimraf" : " ^3.0.2" ,
23
24
"test-ipfs-example" : " ^2.0.3"
24
25
},
25
26
"browserslist" : [
You can’t perform that action at this time.
0 commit comments