|
14 | 14 | "url": "https://github.com/w3tecch/typeorm-seeding.git"
|
15 | 15 | },
|
16 | 16 | "scripts": {
|
17 |
| - "prebuild": "rimraf dist", |
| 17 | + "build": "tsc --project ./tsconfig.build.json", |
18 | 18 | "format": "prettier --write \"src/**/*.ts\"",
|
19 |
| - "lint": "eslint \"src/**/*.ts\" --fix", |
20 |
| - "build": "npm run prebuild && tsc --project ./tsconfig.build.json", |
21 |
| - "watch": "rollup -cw", |
22 |
| - "test": "jest", |
23 |
| - "test:watch": "jest --watch", |
24 |
| - "test:cov": "jest --coverage", |
| 19 | + "format:ci": "prettier --check \"src/**/*.ts\" \"sample/**/*.ts\"", |
| 20 | + "lint": "eslint \"src/**/*.ts\" \"sample/**/*.ts\" --fix", |
| 21 | + "lint:ci": "eslint \"src/**/*.ts\" \"sample/**/*.ts\"", |
| 22 | + "prebuild": "rimraf dist", |
25 | 23 | "semantic-release": "semantic-release",
|
26 | 24 | "schema:drop": "ts-node ./node_modules/typeorm/cli.js schema:drop -c sample",
|
27 |
| - "schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync -c sample", |
28 | 25 | "schema:log": "ts-node ./node_modules/typeorm/cli.js schema:log -c sample",
|
| 26 | + "schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync -c sample", |
29 | 27 | "seed:run": "ts-node ./dist/cli.js seed -c sample",
|
30 |
| - "seed:config": "ts-node ./dist/cli.js config -c sample" |
| 28 | + "seed:config": "ts-node ./dist/cli.js config -c sample", |
| 29 | + "test": "jest", |
| 30 | + "test:cov": "jest --coverage", |
| 31 | + "test:watch": "jest --watch", |
| 32 | + "typecheck": "tsc --noEmit" |
31 | 33 | },
|
32 | 34 | "devDependencies": {
|
33 | 35 | "@semantic-release/git": "^9.0.0",
|
|
0 commit comments