File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 39
39
run : npm ci --no-audit --no-fund # https://docs.npmjs.com/cli/v8/commands/npm-ci
40
40
41
41
- name : Generate Golang + Chi application
42
- run : npm run gen-go- example
42
+ run : npm run example:go
43
43
44
44
- name : Check whether all modified files have been committed
45
45
run : >-
Original file line number Diff line number Diff line change 39
39
run : npm ci --no-audit --no-fund # https://docs.npmjs.com/cli/v8/commands/npm-ci
40
40
41
41
- name : Generate JavaScript + Express application
42
- run : npm run gen-js- example
42
+ run : npm run example:js
43
43
44
44
- name : Check whether all modified files have been committed
45
45
run : >-
Original file line number Diff line number Diff line change 39
39
run : npm ci --no-audit --no-fund # https://docs.npmjs.com/cli/v8/commands/npm-ci
40
40
41
41
- name : Generate Python + FastAPI application
42
- run : npm run gen-py- example
42
+ run : npm run example:py
43
43
44
44
- name : Check whether all modified files have been committed
45
45
run : >-
Original file line number Diff line number Diff line change 39
39
run : npm ci --no-audit --no-fund # https://docs.npmjs.com/cli/v8/commands/npm-ci
40
40
41
41
- name : Generate TypeScript + Express application
42
- run : npm run gen-ts- example
42
+ run : npm run example:ts
43
43
44
44
- name : Check whether all modified files have been committed
45
45
run : >-
Original file line number Diff line number Diff line change 26
26
" src/**"
27
27
],
28
28
"scripts" : {
29
- "gen-js- example" : " cd examples/js/express/mysql; ../../../../src/cli.js --lang js" ,
30
- "gen-ts- example" : " cd examples/ts/express/mysql; ../../../../src/cli.js --lang ts" ,
31
- "gen-go- example" : " cd examples/go/chi/mysql; ../../../../src/cli.js --lang go" ,
32
- "gen-py- example" : " cd examples/python/fastapi/postgres; ../../../../src/cli.js --lang python"
29
+ "example:js " : " cd examples/js/express/mysql; ../../../../src/cli.js --lang js" ,
30
+ "example:ts " : " cd examples/ts/express/mysql; ../../../../src/cli.js --lang ts" ,
31
+ "example:go " : " cd examples/go/chi/mysql; ../../../../src/cli.js --lang go" ,
32
+ "example:py " : " cd examples/python/fastapi/postgres; ../../../../src/cli.js --lang python"
33
33
},
34
34
"dependencies" : {
35
35
"ejs" : " ~3.1.9" ,
You can’t perform that action at this time.
0 commit comments