Skip to content

Commit 50ec8a4

Browse files
chore: knip health-check followups to resolve unlisted binaries (#33009)
* chore: knip health-check followups * add rollup to component deps * remove secure check from webpack-preprocessor package * remove call to yarn types which does nothing * ignore circleci binary as this requires local installation * remove codecov script from server * Move tslint to root package * Revert "Move tslint to root package" This reverts commit e8a7fa7. * ignore tslint binary actually * bump cache
1 parent 3cfdafe commit 50ec8a4

File tree

9 files changed

+13
-6
lines changed

9 files changed

+13
-6
lines changed

.circleci/cache-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Bump this version to force CI to re-create the cache from scratch.
2-
10-17-2025
2+
11-25-2025

knip.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,12 @@
478478
"@tooling/*"
479479
],
480480
"ignoreBinaries": [
481-
"cypress"
481+
"circleci",
482+
"cypress",
483+
"rm",
484+
"tar",
485+
"tslint",
486+
"wc"
482487
],
483488
"rules": {
484489
"files": "warn",

npm/react/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"react-dom": "18.3.1",
2727
"react-router": "6.28.0",
2828
"react-router-dom": "6.28.0",
29+
"rollup": "3.29.5",
2930
"semver": "^7.7.3",
3031
"typescript": "~5.4.5",
3132
"vite": "6.3.5",

npm/svelte/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
},
1313
"devDependencies": {
1414
"@cypress/mount-utils": "0.0.0-development",
15+
"rollup": "3.29.5",
1516
"svelte": "^5.4.0",
1617
"typescript": "~5.4.5"
1718
},

npm/vue/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"cypress": "0.0.0-development",
2424
"debug": "^4.3.4",
2525
"globby": "^11.0.1",
26+
"rollup": "3.29.5",
2627
"tailwindcss": "1.1.4",
2728
"typescript": "~5.4.5",
2829
"vite": "6.3.5",

npm/webpack-preprocessor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"build": "rimraf dist && tsc || echo 'built, with errors'",
99
"check-ts": "tsc --noEmit",
1010
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
11-
"secure": "nsp check",
1211
"semantic-release": "semantic-release",
1312
"size": "npm pack --dry",
1413
"test": "tsx ./scripts/test-webpack-5.ts",
@@ -36,6 +35,7 @@
3635
"mock-require": "3.0.3",
3736
"semantic-release": "22.0.12",
3837
"strip-ansi": "6.0.1",
38+
"tsx": "4.20.6",
3939
"typescript": "~5.4.5",
4040
"vitest": "^3.2.4",
4141
"webpack": "^5.39.0"

packages/frontend-shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"generate-stub-specs": "node ./script/generate-stub-specs.js",
1616
"postinstall": "patch-package",
1717
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json,.vue .",
18-
"test": "yarn cypress:run && yarn types",
18+
"test": "yarn cypress:run",
1919
"tslint": "tslint --config ../ts/tslint.json --project ."
2020
},
2121
"dependencies": {

packages/launchpad/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"dev": "yarn cypress:run-cypress-in-cypress gulp dev --project .",
1616
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
1717
"start": "echo 'run yarn dev from the root' && exit 1",
18-
"test": "yarn cypress:run:ct && yarn types",
18+
"test": "yarn cypress:run:ct",
1919
"tslint": "tslint --config ../ts/tslint.json --project . --exclude ../graphql/src/gen/nxs.gen.ts",
2020
"watch": "echo 'run yarn dev from the root' && exit 1"
2121
},

packages/server/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"build-prod": "tsc || echo 'built, with type errors'",
88
"check-ts": "tsc --noEmit",
99
"clean-deps": "rimraf node_modules",
10-
"codecov": "codecov",
1110
"dev": "node index.js",
1211
"docker": "cd ../.. && WORKING_DIR=/packages/server ./scripts/run-docker-local.sh",
1312
"postinstall": "patch-package",

0 commit comments

Comments
 (0)