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:aurelia-dependency-injection@1.0.0-beta.1.2.0",
"aurelia-dependency-injection": "npm:aurelia-dependency-injection@1.0.0-beta.1.2.3",
"aurelia-loader": "npm:aurelia-loader@1.0.0-beta.1.2.0",
"aurelia-loader-default": "npm:aurelia-loader-default@1.0.0-beta.1.2.1",
"aurelia-path": "npm:aurelia-path@1.0.0-beta.1.2.1",
"aurelia-path": "npm:aurelia-path@1.0.0-beta.1.2.2",
"babel": "npm:babel-core@5.8.38",
"babel-runtime": "npm:babel-runtime@5.8.38",
"core-js": "npm:core-js@1.2.6",
Expand All @@ -26,31 +27,34 @@ System.config({
"path-browserify": "npm:path-browserify@0.0.0"
},
"github:jspm/nodelibs-process@0.1.2": {
"process": "npm:process@0.11.2"
"process": "npm:process@0.11.3"
},
"github:jspm/nodelibs-util@0.1.0": {
"util": "npm:util@0.10.3"
},
"npm:assert@1.3.0": {
"util": "npm:util@0.10.3"
},
"npm:aurelia-dependency-injection@1.0.0-beta.1.2.0": {
"aurelia-logging": "npm:aurelia-logging@1.0.0-beta.1.2.0",
"aurelia-metadata": "npm:aurelia-metadata@1.0.0-beta.1.2.0",
"aurelia-pal": "npm:aurelia-pal@1.0.0-beta.1.2.0"
"npm:aurelia-dependency-injection@1.0.0-beta.1.2.3": {
"aurelia-logging": "npm:aurelia-logging@1.0.0-beta.1.2.1",
"aurelia-metadata": "npm:aurelia-metadata@1.0.0-beta.1.2.1",
"aurelia-pal": "npm:aurelia-pal@1.0.0-beta.1.2.2"
},
"npm:aurelia-loader-default@1.0.0-beta.1.2.1": {
"aurelia-loader": "npm:aurelia-loader@1.0.0-beta.1.2.0",
"aurelia-metadata": "npm:aurelia-metadata@1.0.0-beta.1.2.0",
"aurelia-pal": "npm:aurelia-pal@1.0.0-beta.1.2.0"
},
"npm:aurelia-loader@1.0.0-beta.1.2.0": {
"aurelia-metadata": "npm:aurelia-metadata@1.0.0-beta.1.2.0",
"aurelia-path": "npm:aurelia-path@1.0.0-beta.1.2.1"
"aurelia-metadata": "npm:aurelia-metadata@1.0.0-beta.1.2.1",
"aurelia-path": "npm:aurelia-path@1.0.0-beta.1.2.2"
},
"npm:aurelia-metadata@1.0.0-beta.1.2.0": {
"aurelia-pal": "npm:aurelia-pal@1.0.0-beta.1.2.0"
},
"npm:aurelia-metadata@1.0.0-beta.1.2.1": {
"aurelia-pal": "npm:aurelia-pal@1.0.0-beta.1.2.2"
},
"npm:babel-runtime@5.8.38": {
"process": "github:jspm/nodelibs-process@0.1.2"
},
Expand All @@ -77,7 +81,7 @@ System.config({
"npm:path-browserify@0.0.0": {
"process": "github:jspm/nodelibs-process@0.1.2"
},
"npm:process@0.11.2": {
"npm:process@0.11.3": {
"assert": "github:jspm/nodelibs-assert@0.1.0"
},
"npm:util@0.10.3": {
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.