Skip to content

Commit a0cc0c8

Browse files
author
Eli Skeggs
committed
fix(package): restrict published files
We were going to publish all the files but we only want to publish src.
1 parent 6cd8998 commit a0cc0c8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"version": "0.0.0-development",
44
"description": "Lint all relevant commits for a change or PR on Jenkins CI",
55
"main": "src/index.js",
6+
"files": [
7+
"src"
8+
],
69
"scripts": {
710
"ci": "npm run lint && npm run commitlint",
811
"commitlint": "if [ \"$CI\" != '' ]; then node .; else commitlint --from HEAD; fi",

0 commit comments

Comments
 (0)