Skip to content

Commit d52636f

Browse files
authored
fix: add @typescript-eslint/scope-manager to devDependencies (#96)
* fix: add @typescript-eslint/scope-manager to devDependencies need to remove it after new oxlint version release see oxc-project/oxc#15187 * FIXUP
1 parent 0ea597b commit d52636f

File tree

4 files changed

+40
-7
lines changed

4 files changed

+40
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ jobs:
3232
- name: Install Playwright browsers
3333
run: pnpm exec playwright install chromium
3434

35-
- run: pnpm ready
35+
- name: Check ready
36+
run: |
37+
pnpm ready
38+
# run again to check cache hits
39+
pnpm ready
3640
3741
- name: Check build artifacts
3842
run: |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"generate": "node tools/override-rolldown.mjs --stats"
1616
},
1717
"devDependencies": {
18+
"@typescript-eslint/scope-manager": "^8.46.2",
1819
"@voidzero-dev/vite-plus": "latest",
1920
"dprint": "^0.50.2",
20-
"oxlint-tsgolint": "^0.4.0",
2121
"playwright": "^1.56.1",
2222
"top-github-dependents-by-stars": "^1.0.4",
2323
"vitest": "^4.0.6"

pnpm-lock.yaml

Lines changed: 33 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@
2121
"noFallthroughCasesInSwitch": true,
2222

2323
/* Path mapping for monorepo */
24-
"baseUrl": ".",
2524
"paths": {
26-
"@vibe/*": ["packages/*/src"]
25+
"@vibe/*": ["./packages/*/src"]
2726
}
2827
},
2928
"include": ["apps/*/src", "packages/*/src"],

0 commit comments

Comments
 (0)