|
27 | 27 | "node": ">= 10.x"
|
28 | 28 | },
|
29 | 29 | "scripts": {
|
30 |
| - "test": "npm run prettier:check && npm run lint && npm run check && npm run testonly && npm run check:spelling && npm run build:npm && npm run build:deno && npm run check:integrations", |
31 |
| - "test:ci": "npm run prettier:check && npm run lint -- --no-cache && npm run check && npm run testonly:cover && npm run check:spelling && npm run build:npm && npm run build:deno && npm run check:integrations", |
| 30 | + "preversion": ". ./resources/checkgit.sh && npm ci", |
| 31 | + "version": "node resources/gen-version.js && npm test && git add src/version.js", |
32 | 32 | "fuzzonly": "mocha --full-trace src/**/__tests__/**/*-fuzz.js",
|
| 33 | + "changelog": "node resources/gen-changelog.js", |
| 34 | + "benchmark": "node --noconcurrent_sweeping --expose-gc --predictable ./resources/benchmark.js", |
| 35 | + "test": "npm run lint && npm run check && npm run testonly && npm run prettier:check && npm run check:spelling && npm run build:npm && npm run build:deno && npm run check:integrations", |
| 36 | + "lint": "eslint --cache --ext .js,.ts src resources integrationTests", |
| 37 | + "check": "flow check", |
| 38 | + "check:cover": "node resources/check-cover.js && nyc report --nycrc-path .nycflowrc.yml", |
33 | 39 | "testonly": "mocha --full-trace src/**/__tests__/**/*-test.js",
|
34 | 40 | "testonly:cover": "nyc npm run testonly",
|
35 |
| - "lint": "eslint --cache --ext .js,.ts src resources integrationTests", |
36 |
| - "benchmark": "node --noconcurrent_sweeping --expose-gc --predictable ./resources/benchmark.js", |
37 | 41 | "prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{js,ts,md,json,yml}\"",
|
38 | 42 | "prettier:check": "prettier --ignore-path .gitignore --check \"**/*.{js,ts,md,json,yml}\"",
|
39 |
| - "check": "flow check", |
40 |
| - "check:cover": "node resources/check-cover.js && nyc report --nycrc-path .nycflowrc.yml", |
41 | 43 | "check:spelling": "cspell \"./{src/**/,resources/**/,integrationTests/**/}*.{js,ts,md,graphql}\"",
|
42 | 44 | "check:integrations": "mocha --full-trace integrationTests/*-test.js",
|
43 | 45 | "build:npm": "node resources/build-npm.js",
|
44 | 46 | "build:deno": "node resources/build-deno.js",
|
45 |
| - "changelog": "node resources/gen-changelog.js", |
46 |
| - "preversion": ". ./resources/checkgit.sh && npm ci", |
47 |
| - "version": "node resources/gen-version.js && npm test && git add src/version.js", |
48 | 47 | "gitpublish:npm": "bash ./resources/gitpublish.sh npm npmDist",
|
49 | 48 | "gitpublish:deno": "bash ./resources/gitpublish.sh deno denoDist"
|
50 | 49 | },
|
|
0 commit comments