Don't use gts clean in npm clean to avoid errors on Node 8

This commit is contained in:
Michael Lumish 2020-05-08 11:36:17 -07:00
parent ed608f897c
commit eab63a94ac
2 changed files with 4 additions and 2 deletions

View File

@ -33,6 +33,7 @@
"mocha-jenkins-reporter": "^0.4.1",
"ncp": "^2.0.0",
"pify": "^4.0.1",
"rimraf": "^3.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.7.2"
},
@ -43,7 +44,7 @@
],
"scripts": {
"build": "npm run compile",
"clean": "gts clean",
"clean": "node -e 'require(\"rimraf\")(\"./build\", () => {})'",
"compile": "tsc -p .",
"format": "clang-format -i -style=\"{Language: JavaScript, BasedOnStyle: Google, ColumnLimit: 80}\" src/*.ts test/*.ts",
"lint": "npm run check",

View File

@ -14,7 +14,7 @@
"typings": "build/src/index.d.ts",
"scripts": {
"build": "npm run compile",
"clean": "gts clean",
"clean": "node -e 'require(\"rimraf\")(\"./build\", () => {})'",
"compile": "tsc -p .",
"format": "clang-format -i -style=\"{Language: JavaScript, BasedOnStyle: Google, ColumnLimit: 80}\" src/*.ts test/*.ts",
"lint": "tslint -c node_modules/google-ts-style/tslint.json -p . -t codeFrame --type-check",
@ -47,6 +47,7 @@
"@types/node": "^10.12.5",
"clang-format": "^1.2.2",
"gts": "^1.1.0",
"rimraf": "^3.0.2",
"typescript": "~3.3.3333"
},
"engines": {