yarn clean-transpile: ensure that it always gets everything

This commit is contained in:
Scott Nonnenberg 2019-04-02 17:46:30 -07:00
parent a2fca80759
commit 82dc723432
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@
"tslint": "tslint --format stylish --project .",
"format": "prettier --write \"*.{css,js,json,md,scss,ts,tsx}\" \"./**/*.{css,js,json,md,scss,ts,tsx}\"",
"transpile": "tsc",
"clean-transpile": "rimraf ts/**/*.js ts/*.js",
"clean-transpile": "rimraf ts/**/*.js && rimraf ts/*.js",
"open-coverage": "open coverage/lcov-report/index.html",
"styleguide": "styleguidist server"
},