-
-
Notifications
You must be signed in to change notification settings - Fork 119
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
Update development dependencies #496
Conversation
39ba900
to
ad1471b
Compare
@@ -1035,7 +1035,7 @@ describe('ember-cli-babel', function() { | |||
expect( | |||
output.read() | |||
).to.deep.equal({ | |||
"foo.js": `define(\"foo\", [], function () {\n \"use strict\";\n\n Ember.String.camelize('stuff-here');\n});` | |||
"foo.js": `define("foo", [], function () {\n "use strict";\n\n Ember.String.camelize('stuff-here');\n});` |
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.
These escapes were marked as unnecessary by ESLint.
@@ -30,8 +30,7 @@ | |||
}, | |||
"scripts": { | |||
"build": "ember build", | |||
"changelog": "lerna-changelog", |
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.
Remnant of an older release setup.
@@ -7,10 +10,10 @@ export default class ApplicationController extends Controller { | |||
constructor() { | |||
super(...arguments); | |||
|
|||
this.animal = new Animal('dog'); | |||
set(this, 'animal', new Animal('dog')); |
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.
Fixes by eslint-plugin-ember
.
@@ -6,13 +6,6 @@ const browsers = [ | |||
'last 1 Safari versions' | |||
]; | |||
|
|||
const isCI = !!process.env.CI; |
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.
Fixes the Uncaught TypeError: (0 , _emberBabel.extends) is not a function
error.
Thank you! |
Mostly silences a bunch of logs / warnings / vulnerabilities.
Reviewing commit per commit should make this PR clearer.