Skip to content

Commit

Permalink
Speed up builds by not re-compiling codegen scripts (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
jscheiny authored Jun 20, 2018
1 parent d4389f0 commit db99408
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"compile:codegen": "tsc -p codegen",
"lint": "tslint -p src/tsconfig.json -c tslint.json '{src,codegen}/**/*.ts'",
"lint:fix": "yarn lint --fix",
"node:codegen:produce": "ts-node codegen/produce",
"node:codegen:verify": "ts-node codegen/verify",
"node:codegen:produce": "node codegen/dist/produce",
"node:codegen:verify": "node codegen/dist/verify",
"test": "jest --config jest.config.js",
"verify": "npm-run-all -s codegen:verify compile:src lint test"
},
Expand Down

0 comments on commit db99408

Please sign in to comment.