Skip to content

Commit 0c4c9f1

Browse files
committed
fix(e2e): add vite-plus to pnpm.overrides in force-override mode
vite-plus itself was missing from pnpm.overrides, so projects using pnpm catalogs (e.g. vibe-dashboard) resolved vite-plus via catalog to an old version instead of the local tgz. Also update vibe-dashboard hash and add forceFreshMigration for vibe-dashboard and vp-config.
1 parent edf6371 commit 0c4c9f1

3 files changed

Lines changed: 5 additions & 7 deletions

File tree

ecosystem-ci/repo.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"vibe-dashboard": {
1414
"repository": "https://github.com/voidzero-dev/vibe-dashboard.git",
1515
"branch": "main",
16-
"hash": "fcb0518e75e0f05e09ac910dcc88090220dfd3ae"
16+
"hash": "158e4a0c3d8a1801e330300a5deba4506fd5dfb9",
17+
"forceFreshMigration": true
1718
},
1819
"rollipop": {
1920
"repository": "https://github.com/leegeunhyeok/rollipop.git",
@@ -64,7 +65,8 @@
6465
"vp-config": {
6566
"repository": "https://github.com/kazupon/vp-config.git",
6667
"branch": "main",
67-
"hash": "b58c48d71a17c25dec71a003535e6312791ce2aa"
68+
"hash": "b58c48d71a17c25dec71a003535e6312791ce2aa",
69+
"forceFreshMigration": true
6870
},
6971
"vinext": {
7072
"repository": "https://github.com/cloudflare/vinext.git",

ecosystem-ci/tsconfig.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/cli/src/migration/migrator.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -992,6 +992,7 @@ function rewriteRootWorkspacePackageJson(
992992
overrides: {
993993
...pkg.pnpm?.overrides,
994994
...VITE_PLUS_OVERRIDE_PACKAGES,
995+
[VITE_PLUS_NAME]: VITE_PLUS_VERSION,
995996
},
996997
};
997998
} else {

0 commit comments

Comments
 (0)