Skip to content

Commit

Permalink
chore: updating dependencies and adding core loader back in
Browse files Browse the repository at this point in the history
  • Loading branch information
Vheissu committed May 11, 2016
1 parent c1c3cb7 commit bd8ab95
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 17 deletions.
24 changes: 14 additions & 10 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ System.config({
},

map: {
"aurelia-dependency-injection": "npm:[email protected]",
"aurelia-dependency-injection": "npm:[email protected]",
"aurelia-loader": "npm:[email protected]",
"aurelia-loader-default": "npm:[email protected]",
"aurelia-path": "npm:[email protected].1",
"aurelia-path": "npm:[email protected].2",
"babel": "npm:[email protected]",
"babel-runtime": "npm:[email protected]",
"core-js": "npm:[email protected]",
Expand All @@ -26,31 +27,34 @@ System.config({
"path-browserify": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"process": "npm:[email protected].2"
"process": "npm:[email protected].3"
},
"github:jspm/[email protected]": {
"util": "npm:[email protected]"
},
"npm:[email protected]": {
"util": "npm:[email protected]"
},
"npm:[email protected].0": {
"aurelia-logging": "npm:[email protected].0",
"aurelia-metadata": "npm:[email protected].0",
"aurelia-pal": "npm:[email protected].0"
"npm:[email protected].3": {
"aurelia-logging": "npm:[email protected].1",
"aurelia-metadata": "npm:[email protected].1",
"aurelia-pal": "npm:[email protected].2"
},
"npm:[email protected]": {
"aurelia-loader": "npm:[email protected]",
"aurelia-metadata": "npm:[email protected]",
"aurelia-pal": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-metadata": "npm:[email protected].0",
"aurelia-path": "npm:[email protected].1"
"aurelia-metadata": "npm:[email protected].1",
"aurelia-path": "npm:[email protected].2"
},
"npm:[email protected]": {
"aurelia-pal": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-pal": "npm:[email protected]"
},
"npm:[email protected]": {
"process": "github:jspm/[email protected]"
},
Expand All @@ -77,7 +81,7 @@ System.config({
"npm:[email protected]": {
"process": "github:jspm/[email protected]"
},
"npm:[email protected].2": {
"npm:[email protected].3": {
"assert": "github:jspm/[email protected]"
},
"npm:[email protected]": {
Expand Down
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,19 @@
"lib": "dist/amd"
},
"dependencies": {
"aurelia-dependency-injection": "^1.0.0-beta.1.2.0",
"aurelia-loader-default": "^1.0.0-beta.1.2.1",
"aurelia-path": "^1.0.0-beta.1.2.1",
"aurelia-dependency-injection": "^1.0.0-beta.1.2.3",
"aurelia-loader": "^1.0.0-beta.1.2.0",
"aurelia-loader-default": "^1.0.0-beta.1.2.2",
"aurelia-path": "^1.0.0-beta.1.2.2",
"deep-extend": "^0.4.1"
},
"devDependencies": {}
},
"dependencies": {
"aurelia-dependency-injection": "^1.0.0-beta.1.2.0",
"aurelia-loader-default": "^1.0.0-beta.1.2.1",
"aurelia-path": "^1.0.0-beta.1.2.1",
"aurelia-dependency-injection": "^1.0.0-beta.1.2.3",
"aurelia-loader": "^1.0.0-beta.1.2.0",
"aurelia-loader-default": "^1.0.0-beta.1.2.2",
"aurelia-path": "^1.0.0-beta.1.2.2",
"deep-extend": "^0.4.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/configure.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {inject} from 'aurelia-dependency-injection';
import {join} from 'aurelia-path';
import {Loader} from 'aurelia-loader-default';
import {Loader} from 'aurelia-loader';
import deepExtend from 'deep-extend';

@inject(Loader)
Expand Down

0 comments on commit bd8ab95

Please sign in to comment.