|
10 | 10 | "prebuild": "rimraf dist/ .bob/ tsconfig.tsbuildinfo", |
11 | 11 | "build": "bob build", |
12 | 12 | "postbuild": "pnpm fix-bins", |
13 | | - "ci:lint": "eslint --cache --output-file eslint_report.json --format json .", |
14 | 13 | "clean": "rimraf node_modules/", |
| 14 | + "dev-test:generate": "pnpm generate:examples:esm", |
| 15 | + "dev-test:generate:cjs": "node packages/graphql-codegen-cli/dist/cjs/bin.js --require dotenv/config --config ./dev-test/codegen.ts dotenv_config_path=dev-test/.env", |
| 16 | + "dev-test:generate:esm": "node packages/graphql-codegen-cli/dist/esm/bin.js --require dotenv/config --config ./dev-test/codegen.ts dotenv_config_path=dev-test/.env", |
| 17 | + "dev-test:watch": "pnpm watch:examples:esm", |
| 18 | + "dev-test:watch:cjs": "node packages/graphql-codegen-cli/dist/cjs/bin.js --require dotenv/config --watch --config ./dev-test/codegen.ts dotenv_config_path=dev-test/.env", |
| 19 | + "dev-test:watch:esm": "node packages/graphql-codegen-cli/dist/esm/bin.js --require dotenv/config --watch --config ./dev-test/codegen.ts dotenv_config_path=dev-test/.env", |
15 | 20 | "examples:build": "set -o xtrace && eval $(node scripts/print-example-ci-command.js build)", |
16 | 21 | "examples:codegen": "set -o xtrace && eval $(node scripts/print-example-ci-command.js codegen)", |
17 | 22 | "examples:test:end2end": "set -o xtrace && eval $(node scripts/print-example-ci-command.js test:end2end)", |
18 | 23 | "fix-bins": "node scripts/fix-bin.js", |
19 | | - "generate:examples": "pnpm generate:examples:esm", |
20 | | - "generate:examples:cjs": "node packages/graphql-codegen-cli/dist/cjs/bin.js --require dotenv/config --config ./dev-test/codegen.ts dotenv_config_path=dev-test/.env", |
21 | | - "generate:examples:esm": "node packages/graphql-codegen-cli/dist/esm/bin.js --require dotenv/config --config ./dev-test/codegen.ts dotenv_config_path=dev-test/.env", |
22 | 24 | "postinstall": "husky install", |
23 | 25 | "lint": "eslint --cache .", |
| 26 | + "lint:ci": "eslint --cache --output-file eslint_report.json --format json .", |
24 | 27 | "prettier": "prettier --cache --write --list-different .", |
25 | 28 | "prettier:check": "prettier --cache --check .", |
26 | 29 | "rebuild": "bob build --incremental", |
27 | 30 | "prerelease": "pnpm build", |
28 | 31 | "release": "changeset publish", |
29 | 32 | "test": "vitest", |
30 | | - "types:check": "tsc --noEmit", |
31 | | - "watch-build": "npx tsc-watch --project tsconfig.json --onSuccess \"bob build\"", |
32 | | - "watch:examples": "pnpm watch:examples:esm", |
33 | | - "watch:examples:cjs": "node packages/graphql-codegen-cli/dist/cjs/bin.js --require dotenv/config --watch --config ./dev-test/codegen.ts dotenv_config_path=dev-test/.env", |
34 | | - "watch:examples:esm": "node packages/graphql-codegen-cli/dist/esm/bin.js --require dotenv/config --watch --config ./dev-test/codegen.ts dotenv_config_path=dev-test/.env" |
| 33 | + "types:check": "tsc --noEmit" |
35 | 34 | }, |
36 | 35 | "devDependencies": { |
37 | 36 | "@babel/core": "7.29.0", |
|
0 commit comments