Skip to content

Commit 20ccfe9

Browse files
jamesrwebclaude
andauthored
Remove merge queue trigger and update dependencies (#563)
* ci: remove merge_group trigger from CI workflow The merge queue has been removed from the main branch protection rules, so the merge_group event trigger is no longer needed. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * chore(deps): update project dependencies Updated the following dependencies: - @typescript-eslint/eslint-plugin: ^8.57.1 → ^8.57.2 - @vitest/coverage-v8: ^4.1.0 → ^4.1.2 - happy-dom: ^20.8.4 → ^20.8.9 - pnpm: 10.32.1 → 10.33.0 - typescript-eslint: ^8.57.1 → ^8.57.2 - vite: ^8.0.1 → ^8.0.3 - vitest: ^4.1.0 → ^4.1.2 - vitest-canvas-mock: ^1.1.3 → ^1.1.4 TypeScript 6.x was excluded as typescript-eslint does not yet support it. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Upgrade to TypeScript 6 (#564) * chore: migrate tsconfig.json for TypeScript 6 compatibility - Remove deprecated `baseUrl` and prefix all `paths` entries with `./` - Remove `allowSyntheticDefaultImports` (always enabled in TS6) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * chore(deps): upgrade to TypeScript 6 and typescript-eslint 8.57.3-alpha.3 - TypeScript: ^5.9.3 → ^6.0.2 - typescript-eslint: ^8.57.2 → 8.57.3-alpha.3 - @typescript-eslint/eslint-plugin: ^8.57.2 → 8.57.3-alpha.3 The alpha release of typescript-eslint is required as the stable 8.57.2 does not yet include TypeScript 6 peer dependency support (PRs merged, pending release). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent feec7d1 commit 20ccfe9

5 files changed

Lines changed: 16 additions & 18 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @jamesrweb @yevdyko
1+
* @jamesrweb @yevdyko @claude[bot]

.github/workflows/continuous-integration.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: CI
33
on:
44
pull_request:
55
branches: [main]
6-
merge_group:
76
workflow_dispatch:
87

98
concurrency:

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A wrapper component that allows you to utilise P5 sketches within React apps.",
44
"version": "5.0.3",
55
"type": "module",
6-
"packageManager": "pnpm@10.32.1",
6+
"packageManager": "pnpm@10.33.0",
77
"engines": {
88
"node": ">=24.14.0"
99
},
@@ -102,27 +102,27 @@
102102
"@types/node": "^25.5.0",
103103
"@types/react": "^19.2.14",
104104
"@types/react-dom": "^19.2.3",
105-
"@typescript-eslint/eslint-plugin": "^8.57.1",
105+
"@typescript-eslint/eslint-plugin": "^8.58.0",
106106
"@vitejs/plugin-react": "^6.0.1",
107-
"@vitest/coverage-v8": "^4.1.0",
107+
"@vitest/coverage-v8": "^4.1.2",
108108
"babel-plugin-react-compiler": "1.0.0",
109109
"eslint": "^10.1.0",
110110
"eslint-plugin-react": "^7.37.5",
111111
"eslint-plugin-react-compiler": "19.1.0-rc.2",
112112
"eslint-plugin-react-hooks": "^7.0.1",
113113
"gh-pages": "^6.3.0",
114-
"happy-dom": "^20.8.4",
114+
"happy-dom": "^20.8.9",
115115
"p5.capture": "^1.6.0",
116116
"p5.record.js": "^0.3.0",
117117
"prettier": "^3.8.1",
118118
"react": "19.2.4",
119119
"react-dom": "19.2.4",
120120
"rimraf": "^6.1.3",
121121
"typescript": "^6.0.2",
122-
"typescript-eslint": "^8.57.1",
123-
"vite": "^8.0.1",
122+
"typescript-eslint": "^8.58.0",
123+
"vite": "^8.0.3",
124124
"vite-plugin-dts": "^4.5.4",
125-
"vitest": "^4.1.0",
126-
"vitest-canvas-mock": "^1.1.3"
125+
"vitest": "^4.1.2",
126+
"vitest-canvas-mock": "^1.1.4"
127127
}
128128
}

pnpm-lock.yaml

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

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"noImplicitAny": true,
1818
"isolatedModules": true,
1919
"useDefineForClassFields": true,
20-
"allowSyntheticDefaultImports": true,
2120
"forceConsistentCasingInFileNames": true,
2221
"skipLibCheck": true
2322
}

0 commit comments

Comments
 (0)