add rimraf for windows users.

This commit is contained in:
ttsah
2019-02-19 19:26:28 +02:00
parent 83c3c65fb3
commit a582f8b13a
4 changed files with 3195 additions and 3396 deletions
+1
View File
@@ -1,3 +1,4 @@
.idea
.DS_Store
node_modules
*.d.ts
+1
View File
@@ -1,3 +1,4 @@
.idea
.DS_Store
circle.yml
node_modules
+3190 -3394
View File
File diff suppressed because it is too large Load Diff
+3 -2
View File
@@ -6,8 +6,8 @@
"main:esnext": "index.es2015.js",
"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",
"build": "npm run clean && tsc -d -t es2015 && mv ./index.js ./index.es2015.js && tsc -t es5",
"clean": "rimraf ./*.d.ts && rimraf ./*.map",
"lint": "tslint -p ./tsconfig.json index.tsx test.tsx",
"pretest": "npm run build",
"prepublishOnly": "npm test",
@@ -68,6 +68,7 @@
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"rimraf": "^2.6.3",
"rollupify": "^0.5.0",
"tslint": "^5.10.0",
"typescript": "^2.9.2",