Use rm -rf in move-types scripts

This commit is contained in:
willclarktech
2020-10-13 12:40:49 +02:00
parent 0b1f9f88e7
commit d9f4950b60
9 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -29,7 +29,7 @@
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\"",
"lint-fix": "eslint --max-warnings 0 \"**/*.{js,ts}\" --fix",
"premove-types": "shx rm -rf ./build/types/demo",
"move-types": "shx rm -r ./types/* && shx mv build/types/* ./types && rm -rf ./types/testdata && shx rm -f ./types/*.spec.d.ts",
"move-types": "shx rm -rf ./types/* && shx mv build/types/* ./types && rm -rf ./types/testdata && shx rm -f ./types/*.spec.d.ts",
"format-types": "prettier --write --loglevel warn \"./types/**/*.d.ts\"",
"prebuild": "shx rm -rf ./build",
"build": "tsc",