-
Notifications
You must be signed in to change notification settings - Fork 286
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
More dependencies upgrade #1058
Conversation
@@ -4,7 +4,7 @@ | |||
"ember-addon" | |||
], | |||
"dependencies": { | |||
"ember-cli-babel": "^7.1.2", |
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.
Do we even need this package.json
? If we omit it, would it use the deps from the root package.json
?
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.
We need it for the ember-addon
stuff but I switched the deps to *
so it just uses whatever is at the root
@@ -96,6 +96,7 @@ | |||
"js-string-escape": "^1.0.0", | |||
"loader.js": "^4.7.0", | |||
"mkdirp": "^0.5.1", | |||
"pretender": "^3.0.4", |
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.
Do we need to switch any imports with the switch from ember-cli-pretender to pretender?
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.
No, ember-cli-pretender made import Pretender from 'pretender'
work
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.
We are already importing from pretender: https://github.com/emberjs/ember-inspector/blob/master/tests/acceptance/whats-new-test.js#L4
No description provided.