From 1d82baf1890f0cf8cea43e7db08f32e3b5af1bd5 Mon Sep 17 00:00:00 2001 From: Katie Gengler Date: Thu, 12 Feb 2026 18:17:24 -0500 Subject: [PATCH 1/3] Add instructions for already on vite for upgrading past 6.7 --- docs/upgrading-past-6-7-0.md | 38 +++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/docs/upgrading-past-6-7-0.md b/docs/upgrading-past-6-7-0.md index a2127d54..a65b1195 100644 --- a/docs/upgrading-past-6-7-0.md +++ b/docs/upgrading-past-6-7-0.md @@ -44,6 +44,42 @@ Re-run `ember-cli-update` after that. ## Moving to Vite -Use [ember-vite-codemod][mod] to upgrade your project. +Use [ember-vite-codemod][mod] to upgrade your project. Then see [Already on Vite]. + +## Already on Vite +[Already on Vite]: #already-on-vite + +You will also need to update +`config/ember-cli-update.json` and replace the base blueprint: + +```diff +@@ -2,13 +2,11 @@ +{ + "schemaVersion": "1.0.0", + "packages": [ + { +- "name": "ember-cli", +- "version": "6.7.0", ++ "name": "@ember/app-blueprint", ++ "version": "6.7.1", + "blueprints": [ + { +- "name": "app", +- "outputRepo": "https://github.com/ember-cli/ember-new-output", +- "codemodsSource": "ember-app-codemods-manifest@1", ++ "name": "@ember/app-blueprint", + "isBaseBlueprint": true, + "options": [ + "--ci-provider=github" + ] + } + ] + } + ] +} +``` + +Re-run `ember-cli-update` after that. + [mod]: https://github.com/mainmatter/ember-vite-codemod/ From d40a295905724e2a7dc6c4e8f2c7f7a22c11720c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 23:37:07 +0000 Subject: [PATCH 2/3] Initial plan From 4738d3f797a1171635b5e101345ccf5c95c679ee Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 23:39:15 +0000 Subject: [PATCH 3/3] Fix prettier formatting in upgrading-past-6-7-0.md Co-authored-by: kategengler <444218+kategengler@users.noreply.github.com> --- docs/upgrading-past-6-7-0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrading-past-6-7-0.md b/docs/upgrading-past-6-7-0.md index a65b1195..d055e41b 100644 --- a/docs/upgrading-past-6-7-0.md +++ b/docs/upgrading-past-6-7-0.md @@ -47,6 +47,7 @@ Re-run `ember-cli-update` after that. Use [ember-vite-codemod][mod] to upgrade your project. Then see [Already on Vite]. ## Already on Vite + [Already on Vite]: #already-on-vite You will also need to update @@ -81,5 +82,4 @@ You will also need to update Re-run `ember-cli-update` after that. - [mod]: https://github.com/mainmatter/ember-vite-codemod/