rimraf and fix

This commit is contained in:
ttsah
2019-02-20 10:38:54 +02:00
parent 822b3b106d
commit 45eb0f4f61
+2 -2
View File
@@ -7,8 +7,8 @@
"typings": "index.d.ts",
"scripts": {
"build": "npm run clean && npm run lint && tsc -d -t es2015 && mv ./index.js ./index.es2015.js && tsc -t es5",
"clean": "rm -f ./*.d.ts && rm -f ./*.map",
"lint": "tslint -p ./tsconfig.json index.tsx test.tsx",
"clean": "rimraf ./*.d.ts && rimraf ./*.map",
"lint": "tslint --fix -p ./tsconfig.json index.tsx test.tsx",
"pretest": "npm run build",
"prepublishOnly": "npm test",
"test": "karma start --single-run",