package: clean-transpile should remove tsc cache

This commit is contained in:
Fedor Indutny 2021-03-15 18:00:15 -07:00 committed by Josh Perez
parent 05f59f3db1
commit aeab3f8d16
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
"lint-license-comments": "ts-node ts/util/lint/license_comments.ts",
"format": "prettier --write \"*.{css,js,json,md,scss,ts,tsx}\" \"./**/*.{css,js,json,md,scss,ts,tsx}\"",
"transpile": "tsc",
"clean-transpile": "rimraf ts/**/*.js && rimraf ts/*.js",
"clean-transpile": "rimraf ts/**/*.js && rimraf ts/*.js tsconfig.tsbuildinfo",
"open-coverage": "open coverage/lcov-report/index.html",
"ready": "npm-run-all --print-label clean-transpile grunt --parallel lint lint-deps test-node test-electron",
"dev": "run-p --print-label dev:*",