Skip to content

Commit 52d4780

Browse files
committed
fix(cli-help): fix help command issue
1 parent ab69082 commit 52d4780

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.npmignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
#tests
44
test
55
coverage
6-
.nyc-output
6+
.nyc_output
7+
.nyc-output/**
78

89
#build tools
910
.travis.yml
@@ -26,3 +27,4 @@ coverage
2627
# non-dist-files
2728
src
2829
test
30+
./help.txt

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
"hlsdl": "bin/hlsdl.js"
88
},
99
"scripts": {
10-
"build": "npm run clean && npm run compile",
10+
"build": "npm run clean && npm run compile && npm run copy",
1111
"clean": "rm -fr bin",
12+
"copy": "cp -f ./help.txt bin/",
1213
"code:quality": "npm run lint && npm run lint:fix && npm run build && npm run test",
1314
"commit": "git-cz",
1415
"compile": "babel src -d ./bin --no-comments --minified",

0 commit comments

Comments
 (0)