Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: add note about V2 Addons #509

Merged
merged 1 commit into from
Mar 8, 2024
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
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,16 @@ The first argument is **required** which is the path to the root of your project
disableEmberModulesAPIPolyfill: boolean, // disable ember modules API polyfill
}
```
### Addon usage
### Addon usage (for V1 Addons)

#### Note for V2 Addons (Embroider Compatibility)

V2 Addons do not use `ember-cli-babel` and hence should remove `ember-cli-babel` from their dependencies entirely.

You can read up on how each of the V1 features described below can be re-expressed within a V2 addon via the links below:

- [V2 Addon Format RFC](https://rfcs.emberjs.com/id/0507-embroider-v2-package-format/)
- [Migrating an Ember addon to the next-gen v2 format](https://www.kaliber5.de/en/blog/v2-addon_en)

#### Adding Custom Plugins

Expand Down