-
Couldn't load subscription status.
- Fork 12
feat: drop support for older versions and modernize addon #272
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,8 +5,9 @@ const EmberAddon = require('ember-cli/lib/broccoli/ember-addon'); | |
| module.exports = function (defaults) { | ||
| const app = new EmberAddon(defaults, { | ||
| 'ember-bootstrap': { | ||
| bootstrapVersion: 4, | ||
| importBootstrapCSS: true, | ||
| bootstrapVersion: 5, | ||
| importBootstrapCSS: false, | ||
| insertEmberWormholeElementToDom: false, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Addressing those two deprecations of Ember Bootstrap is a good thing. Do you mind extracting those in a separate PR? Please ensure that the dummy app still renders as expected. Especially from styles perspective as it changes how CSS is imported and which version of Bootstrap is used. |
||
| }, | ||
| }); | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a good catch. Do you mind extracting that change in a dedicated PR?