This repository was archived by the owner on Oct 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -35,4 +35,8 @@ package-lock.json
35
35
.node_repl_history
36
36
37
37
# Build folder
38
- dist
38
+ # Update 2018-08-07: currently build is done to / (before: dist/) due to
39
+ # backwards compatibility reasons, JS files from root and root test/ folder
40
+ # are excluded
41
+ /* .js
42
+ /test
Original file line number Diff line number Diff line change 2
2
"name" : " ethereumjs-wallet" ,
3
3
"version" : " 0.6.1" ,
4
4
"description" : " Utilities for handling Ethereum keys" ,
5
- "main" : " dist/ index.js" ,
5
+ "main" : " index.js" ,
6
6
"files" : [
7
- " dist"
7
+ " /*.js" ,
8
+ " test/"
8
9
],
9
10
"scripts" : {
10
11
"coverage" : " istanbul cover _mocha" ,
11
- "coveralls" : " npm run coverage && coveralls <coverage/lcov.info" ,
12
+ "coveralls" : " npm run build:dist && npm run coverage && coveralls <coverage/lcov.info" ,
12
13
"lint" : " standard" ,
13
14
"prepublishOnly" : " npm run lint && npm run test:build" ,
14
15
"test" : " mocha ./src/test/*.js" ,
15
- "test:build" : " npm run build:dist && mocha ./dist/ test/*.js" ,
16
- "build:dist" : " babel *.js test/*.js -d dist/ "
16
+ "test:build" : " npm run build:dist && mocha ./test/*.js" ,
17
+ "build:dist" : " babel src/ -d . "
17
18
},
18
19
"repository" : {
19
20
"type" : " git" ,
54
55
" it"
55
56
],
56
57
"ignore" : [
57
- " dist/** "
58
+ " ./*.js "
58
59
]
59
60
}
60
61
}
You can’t perform that action at this time.
0 commit comments