-
-
Notifications
You must be signed in to change notification settings - Fork 118
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
Move blueprint provided packages to peerDependencies #917
Conversation
"peerDependencies": { | ||
"@ember/test-helpers": "^2.9.3", | ||
"@glimmer/component": "^1.1.2", | ||
"@glimmer/tracking": "^1.1.2", | ||
"ember-cli-mirage": "*", | ||
"miragejs": "*" | ||
"ember-modifier": "^3.2.7 || ^4.1.0", | ||
"miragejs": "*", | ||
"tracked-built-ins": "^3.1.1" | ||
}, |
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.
Everything I've moved to peerDependencies
is in the modern ember-cli
blueprints.
"dependencies": { | ||
"@ember/test-helpers": "^2.9.3", | ||
"@ember/test-waiters": "^3.0.0", | ||
"@embroider/addon-shim": "^1.5.0", | ||
"@embroider/macros": "^1.0.0", | ||
"@glimmer/component": "^1.0.4", | ||
"@glimmer/tracking": "^1.0.4", | ||
"ember-auto-import": "^2.0.0", | ||
"ember-modifier": "^3.2.7 || ^4.0.0", | ||
"tracked-built-ins": "^3.0.0" | ||
"ember-auto-import": "^2.0.0" | ||
}, |
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.
Believe the remaining dependencies are required. Keen for others to check this, though.
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.
Looks good to.
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.
Looks good to me.
Experiment to see how we might fix #899
Being aggressive here and moving as much as possible from
dependencies
todevDependencies
in an attempt to batch breaking changes and avoid another major.