Skip to content

Commit aac164f

Browse files
chore(all): prepare release 0.11.0
1 parent bfa7832 commit aac164f

17 files changed

+3907
-2763
lines changed

bower.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-dependency-injection",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"description": "A lightweight, extensible dependency injection container for JavaScript.",
55
"keywords": [
66
"aurelia",
@@ -18,8 +18,9 @@
1818
"url": "http://github.com/aurelia/dependency-injection"
1919
},
2020
"dependencies": {
21-
"aurelia-logging": "^0.7.0",
22-
"aurelia-metadata": "^0.8.0",
21+
"aurelia-logging": "^0.8.0",
22+
"aurelia-metadata": "^0.9.0",
23+
"aurelia-pal": "^0.2.0",
2324
"core-js": "zloirock/core-js"
2425
}
2526
}

config.js

Lines changed: 61 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,61 @@
1-
System.config({
2-
defaultJSExtensions: true,
3-
transpiler: "babel",
4-
babelOptions: {
5-
"optional": [
6-
"runtime",
7-
"es7.decorators",
8-
"es7.classProperties"
9-
]
10-
},
11-
paths: {
12-
"github:*": "jspm_packages/github/*",
13-
"aurelia-dependency-injection/*": "dist/*",
14-
"npm:*": "jspm_packages/npm/*"
15-
},
16-
17-
map: {
18-
"aurelia-logging": "github:aurelia/logging@0.7.0",
19-
"aurelia-metadata": "github:aurelia/metadata@0.8.0",
20-
"aurelia-pal": "github:aurelia/pal@0.1.3",
21-
"babel": "npm:babel-core@5.1.13",
22-
"babel-runtime": "npm:babel-runtime@5.1.13",
23-
"core-js": "npm:core-js@1.1.3",
24-
"github:aurelia/metadata@0.8.0": {
25-
"core-js": "npm:core-js@0.9.18"
26-
},
27-
"github:jspm/nodelibs-process@0.1.1": {
28-
"process": "npm:process@0.10.1"
29-
},
30-
"npm:core-js@0.9.18": {
31-
"fs": "github:jspm/nodelibs-fs@0.1.2",
32-
"process": "github:jspm/nodelibs-process@0.1.1",
33-
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
34-
},
35-
"npm:core-js@1.1.3": {
36-
"fs": "github:jspm/nodelibs-fs@0.1.2",
37-
"process": "github:jspm/nodelibs-process@0.1.1",
38-
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
39-
}
40-
}
41-
});
1+
System.config({
2+
defaultJSExtensions: true,
3+
transpiler: "babel",
4+
babelOptions: {
5+
"optional": [
6+
"runtime",
7+
"es7.decorators",
8+
"es7.classProperties"
9+
]
10+
},
11+
paths: {
12+
"github:*": "jspm_packages/github/*",
13+
"aurelia-dependency-injection/*": "dist/*",
14+
"npm:*": "jspm_packages/npm/*"
15+
},
16+
17+
map: {
18+
"aurelia-logging": "github:aurelia/logging@0.8.0",
19+
"aurelia-metadata": "github:aurelia/metadata@0.9.0",
20+
"aurelia-pal": "github:aurelia/pal@0.2.0",
21+
"babel": "npm:babel-core@5.1.13",
22+
"babel-runtime": "npm:babel-runtime@5.1.13",
23+
"core-js": "npm:core-js@1.2.1",
24+
"github:aurelia/metadata@0.9.0": {
25+
"aurelia-pal": "github:aurelia/pal@0.2.0",
26+
"core-js": "npm:core-js@0.9.18"
27+
},
28+
"github:jspm/nodelibs-assert@0.1.0": {
29+
"assert": "npm:assert@1.3.0"
30+
},
31+
"github:jspm/nodelibs-process@0.1.2": {
32+
"process": "npm:process@0.11.2"
33+
},
34+
"github:jspm/nodelibs-util@0.1.0": {
35+
"util": "npm:util@0.10.3"
36+
},
37+
"npm:assert@1.3.0": {
38+
"util": "npm:util@0.10.3"
39+
},
40+
"npm:core-js@0.9.18": {
41+
"fs": "github:jspm/nodelibs-fs@0.1.2",
42+
"process": "github:jspm/nodelibs-process@0.1.2",
43+
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
44+
},
45+
"npm:core-js@1.2.1": {
46+
"fs": "github:jspm/nodelibs-fs@0.1.2",
47+
"process": "github:jspm/nodelibs-process@0.1.2",
48+
"systemjs-json": "github:systemjs/plugin-json@0.1.0"
49+
},
50+
"npm:inherits@2.0.1": {
51+
"util": "github:jspm/nodelibs-util@0.1.0"
52+
},
53+
"npm:process@0.11.2": {
54+
"assert": "github:jspm/nodelibs-assert@0.1.0"
55+
},
56+
"npm:util@0.10.3": {
57+
"inherits": "npm:inherits@2.0.1",
58+
"process": "github:jspm/nodelibs-process@0.1.2"
59+
}
60+
}
61+
});

0 commit comments

Comments
 (0)