Remove post-build npm scripts

This commit is contained in:
willclarktech
2021-02-09 14:57:24 +00:00
parent 301998474a
commit 2a8843f5ba
16 changed files with 0 additions and 33 deletions
-2
View File
@@ -35,10 +35,8 @@
"test-safari": "yarn pack-web && karma start --single-run --browsers Safari",
"test": "yarn build-or-skip && yarn test-node",
"coverage": "nyc --reporter=text --reporter=lcov yarn test --quiet",
"move-types": "shx rm -rf ./types/* && shx mv build/types/* ./types && shx rm -rf ./types/testdata ./types/*.spec.d.ts",
"prebuild": "shx rm -rf ./build",
"build": "tsc",
"postbuild": "yarn move-types",
"build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build",
"pack-web": "yarn build-or-skip && webpack --mode development --config webpack.web.config.js"
},