Skip to content

Commit

Permalink
chore: Use force build (#5568)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored May 4, 2024
1 parent 7471dcf commit c12aad6
Show file tree
Hide file tree
Showing 19 changed files with 37 additions and 37 deletions.
4 changes: 2 additions & 2 deletions packages/cspell-dictionary/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
],
"scripts": {
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"build": "tsc -b .",
"build": "tsc -b . -f",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "vitest run --coverage",
"test:watch": "vitest",
"test": "vitest run",
"watch": "tsc -b . -w"
"watch": "tsc -b . -w -f"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/cspell-eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
"scripts": {
"bt": "pnpm build && pnpm test",
"build": "pnpm build:schema && pnpm build:src",
"build:src": "tsc -b ./tsconfig.json",
"build:src": "tsc -b ./tsconfig.json -f",
"build:schema": "ts-json-schema-generator --no-top-ref --expose none --path src/common/options.cts --type Options -o ./assets/options.schema.json",
"watch": "tsc -b ./tsconfig.json --watch",
"watch": "tsc -b ./tsconfig.json --watch -f",
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "echo coverage",
Expand Down
4 changes: 2 additions & 2 deletions packages/cspell-gitignore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
],
"scripts": {
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"build": "tsc -b .",
"build": "tsc -b . -f",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "vitest run --coverage",
"test:watch": "vitest",
"test": "vitest run",
"watch": "tsc -b . -w"
"watch": "tsc -b . -w -f"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/cspell-glob/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
],
"scripts": {
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"build": "tsc -b .",
"build": "tsc -b . -f",
"build:esm": "tsc -p tsconfig.esm.json",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "vitest run --coverage",
"test:watch": "vitest",
"test": "vitest run",
"watch": "tsc -b . -w"
"watch": "tsc -b . -w -f"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/cspell-grammar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@
],
"scripts": {
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"build": "tsc -b .",
"build": "tsc -b . -f",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "vitest run --coverage",
"test:watch": "vitest",
"test": "vitest run",
"watch": "tsc -b . -w"
"watch": "tsc -b . -w -f"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/cspell-io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"!**/*.map"
],
"scripts": {
"build": "tsc -b .",
"build": "tsc -b . -f",
"build:esm": "tsc -p tsconfig.esm.json",
"build:watch": "tsc -b . -w",
"build:watch": "tsc -b . -w -f",
"watch": "pnpm build:watch",
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"clean-build": "pnpm run clean && pnpm run build",
Expand Down
4 changes: 2 additions & 2 deletions packages/cspell-json-reporter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
},
"scripts": {
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"build": "tsc -b .",
"build": "tsc -b . -f",
"build:esm": "tsc -p tsconfig.esm.json",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "vitest run --coverage",
"test:watch": "vitest",
"test": "vitest run && pnpm test:run",
"test:run": "node ../../bin.mjs . --config cSpell.example.mjs",
"watch": "tsc -b . -w"
"watch": "tsc -b . -w -f"
},
"dependencies": {
"@cspell/cspell-types": "workspace:*"
Expand Down
8 changes: 4 additions & 4 deletions packages/cspell-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"scripts": {
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"clean-build": "pnpm clean && pnpm build",
"build": "tsc -b . && pnpm run build:api",
"build": "tsc -b . -f && pnpm run build:api",
"build:api": "rollup -c api/rollup.config.mjs",
"build:esm": "tsc -b tsconfig.esm.json",
"build:lib": "tsc -b src/lib/tsconfig.json",
"watch": "tsc -b . --watch",
"build:esm": "tsc -b tsconfig.esm.json -f",
"build:lib": "tsc -b src/lib/tsconfig.json -f",
"watch": "tsc -b . --watch -f",
"coverage": "vitest run --coverage --pool=forks",
"test-watch": "vitest",
"prepublishOnly": "pnpm run clean-build",
Expand Down
4 changes: 2 additions & 2 deletions packages/cspell-pipe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@
"!**/*.map"
],
"scripts": {
"build": "tsc -b .",
"watch": "tsc -p . -w",
"build": "tsc -b . -f",
"watch": "tsc -b . -w -f",
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "vitest run --coverage",
Expand Down
4 changes: 2 additions & 2 deletions packages/cspell-service-bus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
"!**/*.map"
],
"scripts": {
"build": "tsc -b .",
"build": "tsc -b . -f",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:clean": "pnpm run clean && pnpm run build",
"watch": "tsc -b . -w",
"watch": "tsc -b . -w -f",
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"clean-build": "pnpm build:clean",
"coverage": "vitest run --coverage",
Expand Down
4 changes: 2 additions & 2 deletions packages/cspell-strong-weak-map/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
"!**/*.map"
],
"scripts": {
"build": "tsc -b .",
"build": "tsc -b . -f",
"build:esm": "tsc -p tsconfig.esm.json",
"watch": "tsc -b . -w",
"watch": "tsc -b . -w -f",
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "pnpm run vitest run --coverage",
Expand Down
10 changes: 5 additions & 5 deletions packages/cspell/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
],
"scripts": {
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"build": "tsc -b . && ts2mjs dist/esm && pnpm run build:api",
"build": "tsc -b . -f && ts2mjs dist/esm && pnpm run build:api",
"build:api": "rollup -c rollup.config.mjs",
"build:esm": "tsc -b tsconfig.esm.json",
"build:esm": "tsc -b tsconfig.esm.json -f",
"build:esm:ts2mjs": "tsc -b tsconfig.esm.json && ts2mjs dist/esm",
"build:lib": "tsc -b src/lib/tsconfig.json",
"build:lib": "tsc -b src/lib/tsconfig.json -f",
"build:readme": "pnpm build:readme:help",
"build:readme:help": "pnpm build:readme:help:lint && pnpm build:readme:help:trace && inject-markdown README.md && prettier -w README.md",
"build:readme:help:lint": "./bin.mjs lint --help > static/help-lint.txt",
Expand All @@ -53,8 +53,8 @@
"coverage": "vitest run --coverage",
"test:watch": "vitest",
"test": "vitest run",
"watch": "tsc -b . -w",
"compile": "tsc -p .",
"watch": "tsc -b . -w -f",
"compile": "tsc -b . -f",
"test-watch": "vitest",
"prepublishOnly": "pnpm run clean-build",
"test:update-snapshot": "vitest run --update"
Expand Down
4 changes: 2 additions & 2 deletions packages/dynamic-import/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
"!**/*.map"
],
"scripts": {
"build": "tsc -b .",
"build": "tsc -b . -f",
"build:clean": "pnpm clean && pnpm build",
"clean": "shx rm -rf dist coverage",
"clean-build": "pnpm build:clean",
"coverage": "vitest run --coverage",
"test-watch": "vitest",
"test": "vitest run",
"watch": "tsc -b . --watch"
"watch": "tsc -b . --watch -f"
},
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:rollup": "rollup -c rollup.config.mjs",
"build:ts": "pnpm run compile && ts2mjs dist/esm",
"clean-build": "pnpm run clean && pnpm run build",
"compile": "tsc -b .",
"compile": "tsc -b . -f",
"test": "pnpm test:unit && pnpm test:smoke",
"test:smoke": "node ./bin.mjs && node ./bin.rollup.mjs && node ./bin.rollup.cjs",
"test:unit": "vitest run"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:rollup": "rollup -c rollup.config.mjs",
"build:ts": "pnpm run compile && ts2mjs dist/esm",
"clean-build": "pnpm run clean && pnpm run build",
"compile": "tsc -b .",
"compile": "tsc -b . -f",
"test": "pnpm test:unit && pnpm test:smoke",
"test:smoke": "node ./bin.mjs && node ./bin.rollup.mjs && node ./bin.rollup.cjs",
"test:unit": "vitest run"
Expand Down
2 changes: 1 addition & 1 deletion test-packages/cspell-glob/test-cspell-glob/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:rollup": "rollup -c rollup.config.mjs",
"build:ts": "pnpm run compile && ts2mjs dist/esm",
"clean-build": "pnpm run clean && pnpm run build",
"compile": "tsc -b .",
"compile": "tsc -b . -f",
"test": "pnpm test:unit && pnpm test:smoke",
"test:smoke": "node ./bin.mjs && node ./bin.rollup.mjs && node ./bin.rollup.cjs",
"test:unit": "vitest run"
Expand Down
2 changes: 1 addition & 1 deletion test-packages/cspell-io/test-cspell-io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:rollup": "rollup -c rollup.config.mjs",
"build:ts": "pnpm run compile && ts2mjs dist/esm",
"clean-build": "pnpm run clean && pnpm run build",
"compile": "tsc -b .",
"compile": "tsc -b . -f",
"test": "pnpm test:unit && pnpm test:smoke",
"test:smoke": "node ./bin.mjs && node ./bin.rollup.mjs && node ./bin.rollup.cjs",
"test:unit": "vitest run"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build:rollup": "rollup -c rollup.config.mjs",
"build:ts": "pnpm run compile",
"clean-build": "pnpm run clean && pnpm run build",
"compile": "tsc -b .",
"compile": "tsc -b . -f",
"test": "pnpm test:unit && pnpm test:smoke",
"test:smoke": "node ./bin.mjs && node ./bin.rollup.mjs && node ./bin.rollup.cjs",
"test:unit": "vitest run"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build:rollup": "rollup -c rollup.config.mjs",
"build:ts": "pnpm run compile && ts2mjs dist/esm",
"clean-build": "pnpm run clean && pnpm run build",
"compile": "tsc -b .",
"compile": "tsc -b . -f",
"test": "pnpm test:unit && pnpm test:smoke",
"test:smoke": "node ./bin.mjs && node ./bin.rollup.mjs && node ./bin.rollup.cjs",
"test:unit": "vitest run"
Expand Down

0 comments on commit c12aad6

Please sign in to comment.