We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab69082 commit 52d4780Copy full SHA for 52d4780
2 files changed
.npmignore
@@ -3,7 +3,8 @@
3
#tests
4
test
5
coverage
6
-.nyc-output
+.nyc_output
7
+.nyc-output/**
8
9
#build tools
10
.travis.yml
@@ -26,3 +27,4 @@ coverage
26
27
# non-dist-files
28
src
29
30
+./help.txt
package.json
@@ -7,8 +7,9 @@
"hlsdl": "bin/hlsdl.js"
},
"scripts": {
- "build": "npm run clean && npm run compile",
+ "build": "npm run clean && npm run compile && npm run copy",
11
"clean": "rm -fr bin",
12
+ "copy": "cp -f ./help.txt bin/",
13
"code:quality": "npm run lint && npm run lint:fix && npm run build && npm run test",
14
"commit": "git-cz",
15
"compile": "babel src -d ./bin --no-comments --minified",
0 commit comments