Skip to content

Commit

Permalink
ci: Remove .tsbuildinfo during clean
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Sep 12, 2021
1 parent e79d890 commit 08ca3ba
Show file tree
Hide file tree
Showing 19 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion integration-tests/package.json
Expand Up @@ -12,7 +12,7 @@
"scripts": {
"build": "tsc -p .",
"clean": "npm run clean-dist && npm run clean-repos",
"clean-dist": "rimraf dist",
"clean-dist": "rimraf dist .tsbuildinfo",
"clean-repos": "rimraf repositories/temp temp",
"clean-build": "npm run clean && npm run build",
"integration-tests": "node tester.js check -f",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -13,8 +13,8 @@
"build-schema": "lerna run build-schema",
"build-integration-tests": "cd ./integration-tests && npm i",
"check-spelling": "npx cspell -c cspellrc.json",
"clean-build": "lerna run clean-build",
"clean": "lerna run clean && rimraf lcov.info",
"clean-build": "npm run clean && lerna run clean-build",
"clean": "rimraf **/.tsbuildinfo && lerna run clean && rimraf lcov.info",
"coverage": "lerna run coverage --stream && npm run coverage-collect",
"coverage-collect": "globcat packages/*/coverage/lcov.info > lcov.info",
"install": "lerna bootstrap --ci",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-dynamic-loader/package.json
Expand Up @@ -12,7 +12,7 @@
".": "./dist/index.js"
},
"scripts": {
"clean": "rimraf dist coverage",
"clean": "rimraf dist coverage .tsbuildinfo",
"build": "npm run compile",
"clean-build": "npm run clean && npm run build",
"compile": "tsc -p .",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-glob/package.json
Expand Up @@ -24,7 +24,7 @@
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"clean": "rimraf dist coverage",
"clean": "rimraf dist coverage .tsbuildinfo",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
"test-watch": "jest --watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-io/package.json
Expand Up @@ -14,7 +14,7 @@
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"clean": "rimraf dist temp coverage",
"clean": "rimraf dist temp coverage .tsbuildinfo",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
"test-watch": "jest --watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-lib/package.json
Expand Up @@ -13,7 +13,7 @@
"!**/*.map"
],
"scripts": {
"clean": "rimraf dist temp coverage",
"clean": "rimraf dist temp coverage .tsbuildinfo",
"build": "npm run compile",
"clean-build": "npm run clean && npm run build",
"compile": "tsc -p .",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-tools/package.json
Expand Up @@ -13,7 +13,7 @@
"build": "tsc -p .",
"watch": "tsc -p . -w",
"clean-build": "npm run clean && npm run build",
"clean": "rimraf dist temp coverage",
"clean": "rimraf dist temp coverage .tsbuildinfo",
"coverage": "jest --coverage",
"test-watch": "jest --watch",
"test": "jest",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-trie-lib/package.json
Expand Up @@ -12,7 +12,7 @@
"!**/*.map"
],
"scripts": {
"clean": "rimraf dist coverage",
"clean": "rimraf dist coverage .tsbuildinfo",
"build": "tsc -p .",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-trie/package.json
Expand Up @@ -16,7 +16,7 @@
"!**/*.map"
],
"scripts": {
"clean": "rimraf dist temp coverage",
"clean": "rimraf dist temp coverage .tsbuildinfo",
"build": "tsc -p .",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-trie2-lib/package.json
Expand Up @@ -12,7 +12,7 @@
"!**/*.map"
],
"scripts": {
"clean": "rimraf dist coverage",
"clean": "rimraf dist coverage .tsbuildinfo",
"build": "tsc -p .",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-types/package.json
Expand Up @@ -14,7 +14,7 @@
"./ajv.config.js": "./ajv.config.js"
},
"scripts": {
"clean": "rimraf dist coverage",
"clean": "rimraf dist coverage .tsbuildinfo",
"build": "npm run compile && npm run build-schema",
"build-schema": "ts-json-schema-generator --no-top-ref --path src/settings/CSpellSettingsDef.ts --type CSpellSettings --validation-keywords markdownDescription --validation-keywords scope --validation-keywords deprecated --validation-keywords deprecationMessage -o ./cspell.schema.json && cp ./cspell.schema.json ../..",
"build-docs": "typedoc --out ../../docs/types/cspell-types src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell/package.json
Expand Up @@ -35,7 +35,7 @@
"!**/*.map"
],
"scripts": {
"clean": "rimraf dist coverage",
"clean": "rimraf dist coverage .tsbuildinfo",
"build": "npm run compile",
"clean-build": "npm run clean && npm run build",
"compile": "tsc -p .",
Expand Down
2 changes: 1 addition & 1 deletion packages/hunspell-reader/package.json
Expand Up @@ -20,7 +20,7 @@
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"lint": "prettier -w \"**/*.{md,yaml,yml,json,ts}\"",
"clean": "rimraf dist coverage",
"clean": "rimraf dist coverage .tsbuildinfo",
"coverage": "jest --coverage",
"watch": "tsc -w"
},
Expand Down
2 changes: 1 addition & 1 deletion test-packages/test-cspell-glob/package.json
Expand Up @@ -4,7 +4,7 @@
"description": "Pure testing package for cspell-io. It purpose is to verify cspell-io dependencies.",
"private": true,
"scripts": {
"clean": "rimraf dist",
"clean": "rimraf dist .tsbuildinfo",
"build": "npm run compile",
"clean-build": "npm run clean && npm run build",
"compile": "tsc -p .",
Expand Down
2 changes: 1 addition & 1 deletion test-packages/test-cspell-io/package.json
Expand Up @@ -4,7 +4,7 @@
"description": "Pure testing package for cspell-io. It purpose is to verify cspell-io dependencies.",
"private": true,
"scripts": {
"clean": "rimraf dist",
"clean": "rimraf dist .tsbuildinfo",
"build": "npm run compile",
"clean-build": "npm run clean && npm run build",
"compile": "tsc -p .",
Expand Down
2 changes: 1 addition & 1 deletion test-packages/test-cspell-lib-webpack/package.json
Expand Up @@ -4,7 +4,7 @@
"description": "Pure testing package for cspell-lib",
"private": true,
"scripts": {
"clean": "rimraf dist",
"clean": "rimraf dist .tsbuildinfo",
"build": "npm run compile",
"clean-build": "npm run clean && npm run build",
"compile": "tsc -p . && webpack",
Expand Down
2 changes: 1 addition & 1 deletion test-packages/test-cspell-lib/package.json
Expand Up @@ -4,7 +4,7 @@
"description": "Pure testing package for cspell-io. It purpose is to verify cspell-io dependencies.",
"private": true,
"scripts": {
"clean": "rimraf dist",
"clean": "rimraf dist .tsbuildinfo",
"build": "npm run compile",
"clean-build": "npm run clean && npm run build",
"compile": "tsc -p .",
Expand Down
2 changes: 1 addition & 1 deletion test-packages/test-cspell-tools/package.json
Expand Up @@ -4,7 +4,7 @@
"description": "Pure testing package for @cspell/cspell-tools.",
"private": true,
"scripts": {
"clean": "rimraf dist",
"clean": "rimraf dist .tsbuildinfo",
"build": "npm run compile && npm run build-dictionaries",
"clean-build": "npm run clean && npm run build",
"build-dictionaries": "cspell-tools-cli compile -o dist src/php.txt src/companies.txt src/node.txt",
Expand Down
2 changes: 1 addition & 1 deletion test-packages/test-cspell/package.json
Expand Up @@ -4,7 +4,7 @@
"description": "Pure testing package for cspell-io. It purpose is to verify cspell-io dependencies.",
"private": true,
"scripts": {
"clean": "rimraf dist",
"clean": "rimraf dist .tsbuildinfo",
"build": "npm run compile",
"clean-build": "npm run clean && npm run build",
"compile": "tsc -p .",
Expand Down

0 comments on commit 08ca3ba

Please sign in to comment.