Skip to content

Commit

Permalink
[DEPENDENCY]: upgraded to ember-cli@2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
toranb committed Dec 14, 2016
1 parent dc7bcfa commit 2aba524
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,4 +1,4 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
# See https://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,7 +1,7 @@
{
"name": "ember-redux",
"dependencies": {
"ember": "~2.9.0",
"ember": "~2.10.0",
"ember-cli-shims": "0.1.3",
"fauxjax-toranb": "1.9.0",
"jquery": "~2.1.4"
Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -27,15 +27,15 @@
"devDependencies": {
"broccoli-asset-rev": "^2.4.5",
"ember-browserify": "^1.1.11",
"ember-cli": "2.9.1",
"ember-cli": "2.10.0",
"ember-cli-app-version": "^2.0.0",
"ember-cli-dependency-checker": "^1.3.0",
"ember-cli-htmlbars": "^1.0.10",
"ember-cli-htmlbars-inline-precompile": "^0.3.3",
"ember-cli-inject-live-reload": "^1.4.1",
"ember-cli-jshint": "^1.0.4",
"ember-cli-jshint": "^2.0.1",
"ember-cli-qunit": "^3.0.1",
"ember-cli-release": "0.2.9",
"ember-cli-release": "^0.2.9",
"ember-cli-sri": "^2.1.0",
"ember-cli-test-loader": "^1.1.0",
"ember-cli-uglify": "^1.2.0",
Expand Down
4 changes: 2 additions & 2 deletions tests/helpers/start-app.js
Expand Up @@ -27,8 +27,8 @@ Ember.Test.registerAsyncHelper('ajax', ajax);
export default function startApp(attrs) {
let application;

let attributes = Ember.merge({}, config.APP);
attributes = Ember.merge(attributes, attrs); // use defaults, but you can override;
// use defaults, but you can override
let attributes = Ember.assign({}, config.APP, attrs);

Ember.run(() => {
application = Application.create(attributes);
Expand Down

0 comments on commit 2aba524

Please sign in to comment.