Skip to content

Commit ec46391

Browse files
authored
Merge branch 'main' into fix/942
2 parents 24c3c14 + d62e5d9 commit ec46391

16 files changed

Lines changed: 129 additions & 8 deletions

File tree

.github/workflows/claude.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,9 @@ jobs:
4242
- If the issue is unclear, ask for more context
4343
- If fixable, provide a concrete implementation plan with specific steps
4444
- Any potential concerns or blockers
45+
46+
- name: Unassign boshen
47+
if: always()
48+
env:
49+
GH_TOKEN: ${{ github.token }}
50+
run: gh issue edit ${{ github.event.issue.number }} --remove-assignee boshen

packages/cli/snap-tests-global/command-staged-with-config/steps.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"ignoredPlatforms": ["win32"],
2+
"ignoredPlatforms": ["win32", "darwin"],
33
"commands": [
44
{ "command": "git init", "ignoreOutput": true },
55
{ "command": "git add -A && git commit -m 'init'", "ignoreOutput": true },

packages/cli/snap-tests-global/migration-merge-vite-config-ts/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
},
1818
"devDependencies": {
1919
"@vitejs/plugin-react": "^4.2.0",
20+
"@vitest/browser-playwright": "^4.0.0",
2021
"oxfmt": "1",
2122
"oxlint": "1",
2223
"vite": "^7.0.0",

packages/cli/snap-tests-global/migration-monorepo-pnpm-overrides-dependency-selector/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"dev": "vite"
66
},
77
"devDependencies": {
8+
"@vitejs/plugin-react": "catalog:",
89
"vite": "catalog:"
910
},
1011
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd",

packages/cli/snap-tests-global/migration-monorepo-pnpm-overrides-dependency-selector/snap.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export default defineConfig({
2626
"prepare": "vp config"
2727
},
2828
"devDependencies": {
29+
"@vitejs/plugin-react": "catalog:",
2930
"vite": "catalog:",
3031
"vite-plus": "catalog:"
3132
},

packages/cli/snap-tests-global/migration-monorepo-pnpm/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"testnpm2": "1.0.0"
1717
},
1818
"devDependencies": {
19+
"@vitejs/plugin-react": "catalog:",
1920
"oxfmt": "catalog:",
2021
"oxlint": "catalog:",
2122
"vite": "catalog:",

packages/cli/snap-tests-global/migration-monorepo-pnpm/snap.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ cat: .oxfmtrc.json: No such file or directory
6262
"testnpm2": "1.0.0"
6363
},
6464
"devDependencies": {
65+
"@vitejs/plugin-react": "catalog:",
6566
"vite": "catalog:",
6667
"vitest": "catalog:",
6768
"vite-plus": "catalog:"

packages/cli/snap-tests-global/migration-monorepo-yarn4/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"testnpm2": "1.0.0"
2020
},
2121
"devDependencies": {
22+
"@vitejs/plugin-react": "catalog:",
2223
"oxfmt": "catalog:",
2324
"oxlint": "catalog:",
2425
"vite": "catalog:",

packages/cli/snap-tests-global/migration-monorepo-yarn4/snap.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ cat: .oxlintrc.json: No such file or directory
5353
"testnpm2": "1.0.0"
5454
},
5555
"devDependencies": {
56+
"@vitejs/plugin-react": "catalog:",
5657
"vite": "catalog:",
5758
"vitest": "catalog:",
5859
"vite-plus": "catalog:"

packages/cli/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { type Plugin as VitestPlugin } from '@voidzero-dev/vite-plus-test/config';
2+
import type { OxfmtConfig } from 'oxfmt';
23
import type { OxlintConfig } from 'oxlint';
34

45
import { defineConfig } from './define-config.js';
5-
import type { FormatOptions } from './oxfmt-config';
66
import type { PackUserConfig } from './pack';
77
import type { RunConfig } from './run-config';
88
import type { StagedConfig } from './staged-config';
@@ -14,7 +14,7 @@ declare module '@voidzero-dev/vite-plus-core' {
1414
*/
1515
lint?: OxlintConfig;
1616

17-
fmt?: FormatOptions;
17+
fmt?: OxfmtConfig;
1818

1919
pack?: PackUserConfig | PackUserConfig[];
2020

0 commit comments

Comments
 (0)