File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 289289 "compile" : " npm run check-types && npm run lint && node esbuild.js" ,
290290 "watch" : " npm-run-all -p watch:*" ,
291291 "watch:esbuild" : " node esbuild.js --watch" ,
292- "watch:tsc" : " tsc --noEmit --watch --project tsconfig.json" ,
292+ "watch:tsc" : " npm run protos && tsc --noEmit --watch --project tsconfig.json" ,
293293 "package" : " npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production" ,
294294 "protos" : " node proto/build-proto.js && prettier src/shared/proto --write && prettier src/core/controller --write" ,
295- "compile-tests" : " tsc -p ./tsconfig.test.json --outDir out" ,
296- "watch-tests" : " tsc -p . -w --outDir out" ,
295+ "compile-tests" : " npm run protos && tsc -p ./tsconfig.test.json --outDir out" ,
296+ "watch-tests" : " npm run protos && tsc -p . -w --outDir out" ,
297297 "pretest" : " npm run compile-tests && npm run compile && npm run lint" ,
298- "check-types" : " tsc --noEmit" ,
298+ "check-types" : " npm run protos && tsc --noEmit" ,
299299 "lint" : " eslint src --ext ts && eslint webview-ui/src --ext ts" ,
300300 "format" : " prettier . --check" ,
301301 "format:fix" : " prettier . --write" ,
You can’t perform that action at this time.
0 commit comments