-
Notifications
You must be signed in to change notification settings - Fork 0
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
[RFC][NI] Update ember to 2.16 and migrate to the new module API #203
[RFC][NI] Update ember to 2.16 and migrate to the new module API #203
Conversation
9649019
to
bc6bdaf
Compare
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.
Good job, and good job using ember-try
👏
@@ -14,6 +14,10 @@ | |||
/coverage/* | |||
/libpeerconnection.log | |||
npm-debug.log* | |||
yarn-error.log |
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.
I think you can do ./*.log
, I don't see us wanting to commit log files
import Ember from 'ember'; | ||
import Component from '@ember/component'; | ||
import { observer } from '@ember/object'; | ||
import $ from 'jquery'; |
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.
oh 😞
.gitignore
Outdated
testem.log | ||
.DS_Store |
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.
why remove these two?
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.
Mea culpa
6d63890
to
924898a
Compare
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.
🥇
NI