Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/goofy-monkeys-train.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@alauda/doom": patch
---

fix: @eslint/js not found issue
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"@swc-node/register": "^1.11.1",
Comment on lines 33 to 36
Copy link

Copilot AI Mar 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@eslint/js is still imported by the repo-level eslint.config.js, but it’s no longer declared in the root package.json. With Yarn’s node-modules linker this can become a phantom dependency (working only via hoisting) and may break yarn lint/CI if hoisting changes. Please either re-add @eslint/js to the root devDependencies, or refactor the root ESLint config to avoid importing it directly.

Copilot uses AI. Check for mistakes.
"@swc/core": "^1.15.18",
"@types/cli-progress": "^3.11.6",
Expand Down
1 change: 1 addition & 0 deletions packages/doom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"@alauda/doom-export": "^0.4.1",
"@cspell/eslint-plugin": "^9.7.0",
"@eslint-react/eslint-plugin": "^2.13.0",
"@eslint/js": "^10.0.1",
"@inquirer/prompts": "^8.3.0",
"@openapi-contrib/openapi-schema-to-json-schema": "^5.1.0",
"@rsbuild/plugin-react": "^1.4.6",
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ __metadata:
"@alauda/doom-export": "npm:^0.4.1"
"@cspell/eslint-plugin": "npm:^9.7.0"
"@eslint-react/eslint-plugin": "npm:^2.13.0"
"@eslint/js": "npm:^10.0.1"
"@inquirer/prompts": "npm:^8.3.0"
"@openapi-contrib/openapi-schema-to-json-schema": "npm:^5.1.0"
"@rsbuild/plugin-react": "npm:^1.4.6"
Expand Down Expand Up @@ -4321,7 +4322,6 @@ __metadata:
dependencies:
"@changesets/changelog-github": "npm:^0.6.0"
"@changesets/cli": "npm:^2.30.0"
"@eslint/js": "npm:^10.0.1"
"@swc-node/register": "npm:^1.11.1"
"@swc/core": "npm:^1.15.18"
"@types/cli-progress": "npm:^3.11.6"
Expand Down
Loading