Remove pre/post scripts entirely

This commit is contained in:
willclarktech
2021-05-18 15:16:00 +02:00
parent e79b29a070
commit fcc2ca3b74
19 changed files with 25 additions and 50 deletions
+1 -2
View File
@@ -27,8 +27,7 @@
"format-text": "prettier --write \"./*.md\"",
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\"",
"lint-fix": "eslint --max-warnings 0 \"**/*.{js,ts}\" --fix",
"prebuild": "rm -rf ./build",
"build": "yarn prebuild && tsc",
"build": "rm -rf ./build && tsc",
"build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build",
"test-node": "node jasmine-testrunner.js",
"test": "yarn build-or-skip && yarn test-node",