Speed up yarn dev TypeScript transpilation

This commit is contained in:
Evan Hahn 2021-03-12 17:49:54 -06:00 committed by Josh Perez
parent e09fb6cce4
commit 55f0beaa6d
2 changed files with 1 additions and 4 deletions

View file

@ -116,10 +116,6 @@ module.exports = grunt => {
files: ['./stylesheets/*.scss', './stylesheets/**/*.scss'],
tasks: ['sass'],
},
transpile: {
files: ['./ts/**/*.ts', './ts/**/*.tsx'],
tasks: ['exec:transpile'],
},
},
exec: {
'tx-pull-new': {

View file

@ -42,6 +42,7 @@
"ready": "npm-run-all --print-label clean-transpile grunt --parallel lint lint-deps test-node test-electron",
"dev": "run-p --print-label dev:*",
"dev:grunt": "yarn grunt dev",
"dev:transpile": "yarn run transpile --watch --preserveWatchOutput",
"dev:webpack": "cross-env NODE_ENV=development webpack-dev-server --hot",
"dev:typed-scss": "yarn build:typed-scss -w",
"dev:storybook": "cross-env SIGNAL_ENV=storybook start-storybook -p 6006 -s ./",