Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 37 additions & 1 deletion docs/upgrading-past-6-7-0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Loading