Skip to content

Commit 986a257

Browse files
committed
Fix npm run package
Apparently `ncc` no longer knows the `--license` option. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent ffbd20a commit 986a257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"format": "prettier --write **/*.ts",
1010
"format-check": "prettier --check **/*.ts",
1111
"lint": "eslint **/*.ts",
12-
"package": "ncc build --source-map --license licenses.txt",
12+
"package": "ncc build --source-map",
1313
"test": "jest",
1414
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
1515
},

0 commit comments

Comments
 (0)