Reference tsc/webpack in root dir

This commit is contained in:
Daniel Imms
2020-11-02 05:36:23 -08:00
parent 8484978ef0
commit fd6bf6d667
+3 -3
View File
@@ -14,10 +14,10 @@
},
"scripts": {
"prepare": "node bin/download-fonts.js",
"build": "tsc -p src",
"watch": "tsc -w -p src",
"build": "../../node_modules/.bin/tsc -p src",
"watch": "../../node_modules/.bin/tsc -w -p src",
"prepackage": "npm run build",
"package": "webpack",
"package": "../../node_modules/.bin/webpack",
"pretest": "npm run build",
"test": "nyc mocha out/**/*.test.js",
"prepublish": "npm run package"