You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ember-cli: 3.7.1
node: 10.15.0
os: darwin x64
optional-features addon: 0.7.0
Install addon ember install @ember/optional-features
Enable jquery-integration ember feature:enable jquery-integration
➜ test-addon git:(master) ✗ node_modules/.bin/ember feature:enable jquery-integration
Enabled jquery-integration. Be sure to commit config/optional-features.json to source control!
➜ test-addon git:(master) ✗ cat tests/dummy/config/optional-features.json
{
"jquery-integration": true
}
Enable another feature e.g. template-only-glimmer-components
➜ test-addon git:(master) ✗ node_modules/.bin/ember feature:enable template-only-glimmer-components
Enabled template-only-glimmer-components. Be sure to commit config/optional-features.json to source control!
➜ test-addon git:(master) ✗ cat tests/dummy/config/optional-features.json
{
"template-only-glimmer-components": true
}
It should add your newly enabled feature to the list but instead it is destructive. The enable command is destructive and overwrites any previously added features in the addon's dummy app config.
The text was updated successfully, but these errors were encountered:
ember install @ember/optional-features
ember feature:enable jquery-integration
template-only-glimmer-components
The text was updated successfully, but these errors were encountered: