Removes Bower Dependency + Update For Fastboot 1.0 + Update to Ember 2.14#40
Removes Bower Dependency + Update For Fastboot 1.0 + Update to Ember 2.14#40devotox wants to merge 5 commits intovectart:masterfrom
Conversation
| import { | ||
| setResolver | ||
| } from 'ember-qunit'; | ||
| import { start } from 'ember-cli-qunit'; |
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| Ember.run(function() { | ||
| application = Application.create(attributes); | ||
| return Ember.run(() => { | ||
| let application = Application.create(attributes); |
There was a problem hiding this comment.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
|
|
||
| Ember.run(function() { | ||
| application = Application.create(attributes); | ||
| return Ember.run(() => { |
There was a problem hiding this comment.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
| var application; | ||
|
|
||
| var attributes = Ember.merge({}, config.APP); | ||
| let attributes = Ember.merge({}, config.APP); |
There was a problem hiding this comment.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| import config from '../../config/environment'; | ||
|
|
||
| var resolver = Resolver.create(); | ||
| const resolver = Resolver.create(); |
There was a problem hiding this comment.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| import startApp from '../helpers/start-app'; | ||
| import destroyApp from '../helpers/destroy-app'; | ||
|
|
||
| const { RSVP: { resolve } } = Ember; |
There was a problem hiding this comment.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
'destructuring binding' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| import { module } from 'qunit'; | ||
| import Ember from 'ember'; | ||
| import startApp from '../helpers/start-app'; | ||
| import destroyApp from '../helpers/destroy-app'; |
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| @@ -0,0 +1,23 @@ | |||
| import { module } from 'qunit'; | |||
| import Ember from 'ember'; | |||
| import startApp from '../helpers/start-app'; | |||
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| @@ -0,0 +1,23 @@ | |||
| import { module } from 'qunit'; | |||
| import Ember from 'ember'; | |||
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| @@ -0,0 +1,23 @@ | |||
| import { module } from 'qunit'; | |||
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| import { | ||
| setResolver | ||
| } from 'ember-qunit'; | ||
| import { start } from 'ember-cli-qunit'; |
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| Ember.run(function() { | ||
| application = Application.create(attributes); | ||
| return Ember.run(() => { | ||
| let application = Application.create(attributes); |
There was a problem hiding this comment.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
|
|
||
| Ember.run(function() { | ||
| application = Application.create(attributes); | ||
| return Ember.run(() => { |
There was a problem hiding this comment.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
| var application; | ||
|
|
||
| var attributes = Ember.merge({}, config.APP); | ||
| let attributes = Ember.merge({}, config.APP); |
There was a problem hiding this comment.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| import config from '../../config/environment'; | ||
|
|
||
| var resolver = Resolver.create(); | ||
| const resolver = Resolver.create(); |
There was a problem hiding this comment.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| import startApp from '../helpers/start-app'; | ||
| import destroyApp from '../helpers/destroy-app'; | ||
|
|
||
| const { RSVP: { resolve } } = Ember; |
There was a problem hiding this comment.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
'destructuring binding' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| import { module } from 'qunit'; | ||
| import Ember from 'ember'; | ||
| import startApp from '../helpers/start-app'; | ||
| import destroyApp from '../helpers/destroy-app'; |
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| @@ -0,0 +1,23 @@ | |||
| import { module } from 'qunit'; | |||
| import Ember from 'ember'; | |||
| import startApp from '../helpers/start-app'; | |||
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| @@ -0,0 +1,23 @@ | |||
| import { module } from 'qunit'; | |||
| import Ember from 'ember'; | |||
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| @@ -0,0 +1,23 @@ | |||
| import { module } from 'qunit'; | |||
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| modulePrefix: config.modulePrefix, | ||
| podModulePrefix: config.podModulePrefix, | ||
| Resolver: Resolver | ||
| Resolver |
There was a problem hiding this comment.
'object short notation' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| import config from './config/environment'; | ||
|
|
||
| Ember.MODEL_FACTORY_INJECTIONS = true; | ||
| let App; |
There was a problem hiding this comment.
'let' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| import Resolver from 'ember/resolver'; | ||
| import loadInitializers from 'ember/load-initializers'; | ||
| import Resolver from './resolver'; | ||
| import loadInitializers from 'ember-load-initializers'; |
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| import Ember from 'ember'; | ||
| import Resolver from 'ember/resolver'; | ||
| import loadInitializers from 'ember/load-initializers'; | ||
| import Resolver from './resolver'; |
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
| environment: environment, | ||
| baseURL: '/', | ||
| locationType: 'none', | ||
| environment, |
There was a problem hiding this comment.
'object short notation' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| @@ -1,25 +1,30 @@ | |||
| /* jshint node: true */ | |||
| /* eslint-env node */ | |||
| 'use strict'; | |||
There was a problem hiding this comment.
Use the function form of "use strict".
| Router.map(function() { | ||
| }); | ||
|
|
||
| export default Router; |
There was a problem hiding this comment.
'export' is only available in ES6 (use 'esversion: 6').
|
|
||
| var Router = Ember.Router.extend({ | ||
| location: config.locationType | ||
| const Router = Ember.Router.extend({ |
There was a problem hiding this comment.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
| @@ -0,0 +1,3 @@ | |||
| import Resolver from 'ember-resolver'; | |||
|
|
|||
| export default Resolver; | |||
There was a problem hiding this comment.
'export' is only available in ES6 (use 'esversion: 6').
| @@ -0,0 +1,3 @@ | |||
| import Resolver from 'ember-resolver'; | |||
There was a problem hiding this comment.
'import' is only available in ES6 (use 'esversion: 6').
|
@vectart ? Are you still alive ;p ? |
|
@vectart Do you need help getting this merged? |
This PR brings this package up to the current state of Ember Addons
Also closes this issues
#39