File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 "request" : " launch" ,
1010 "name" : " Launch Program" ,
1111 "program" : " ${workspaceFolder}/src/cli.ts" ,
12- "preLaunchTask" : " tsc: build - tsconfig.json" ,
12+ "preLaunchTask" : " Build" ,
13+ "restart" : true ,
14+ "skipFiles" : [" <node_internals>/**" ],
1315 "args" : [
1416 " -f" ,
1517 " openapi_temp.json" ,
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "type" : " typescript" ,
6+ "tsconfig" : " tsconfig.json" ,
7+ "problemMatcher" : [
8+ " $tsc"
9+ ],
10+ "group" : " build" ,
11+ "label" : " tsc: build - tsconfig.json"
12+ },
13+ {
14+ "type" : " npm" ,
15+ "script" : " postbuild" ,
16+ "group" : " build" ,
17+ "problemMatcher" : [],
18+ "label" : " npm: postbuild" ,
19+ "detail" : " npm run copy-pluggable-files"
20+ },
21+ {
22+ "label" : " Build" ,
23+ "dependsOn" : [
24+ " tsc: build - tsconfig.json" ,
25+ " npm: postbuild"
26+ ]
27+ }
28+ ]
29+ }
Original file line number Diff line number Diff line change 2525 "types" : " dist/cli.d.ts" ,
2626 "scripts" : {
2727 "prepublish" : " npm run build" ,
28- "copy-pluggable-files" : " npx copyfiles -u 1 -a \" ./src/mock-generators/**/assets/**/*\" \" .src/templates/**/*\" \" ./build/\" " ,
28+ "copy-pluggable-files" : " npx copyfiles -u 1 -a \" ./src/mock-generators/**/assets/**/*\" \" ./ src/templates/**/*\" \" ./build/\" " ,
2929 "start" : " ts-node src/cli" ,
3030 "start:dev" : " npx nodemon" ,
3131 "start:build" : " node build/index.js" ,
You can’t perform that action at this time.
0 commit comments