Skip to content

Commit b48702e

Browse files
committed
chore(deps): update to [email protected]
1 parent 948e171 commit b48702e

File tree

8 files changed

+118
-106
lines changed

8 files changed

+118
-106
lines changed

examples/angular/jspm.config.js

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,36 @@
11
SystemJS.config({
2-
packageConfigPaths: [
3-
"npm:@*/*.json",
4-
"npm:*.json",
5-
"github:*/*.json"
6-
],
72
transpiler: "ts",
83
typescriptOptions: {
94
"module": "system",
105
"noImplicitAny": false,
116
"typeCheck": "strict",
127
"tsconfig": "src/another-tsconfig.json"
138
},
9+
packages: {
10+
"src": {
11+
"main": "index",
12+
"defaultExtension": "ts",
13+
"meta": {
14+
"*.css": {
15+
"loader": "css"
16+
}
17+
}
18+
}
19+
}
20+
});
21+
22+
SystemJS.config({
23+
packageConfigPaths: [
24+
"npm:@*/*.json",
25+
"npm:*.json",
26+
"github:*/*.json"
27+
],
1428
map: {
1529
"angular": "github:angular/[email protected]",
1630
"assert": "github:jspm/[email protected]",
1731
"buffer": "github:jspm/[email protected]",
1832
"child_process": "github:jspm/[email protected]",
19-
"clean-css": "npm:[email protected].9",
33+
"clean-css": "npm:[email protected].10",
2034
"css": "github:frankwallis/plugin-css@master",
2135
"events": "github:jspm/[email protected]",
2236
"fs": "github:jspm/[email protected]",
@@ -35,15 +49,6 @@ SystemJS.config({
3549
"util": "github:jspm/[email protected]"
3650
},
3751
packages: {
38-
"src": {
39-
"main": "index",
40-
"defaultExtension": "ts",
41-
"meta": {
42-
"*.css": {
43-
"loader": "css"
44-
}
45-
}
46-
},
4752
"github:capaj/[email protected]": {
4853
"map": {
4954
"debug": "npm:[email protected]",
@@ -53,7 +58,7 @@ SystemJS.config({
5358
},
5459
"github:frankwallis/[email protected]": {
5560
"map": {
56-
"typescript": "npm:[email protected].2"
61+
"typescript": "npm:[email protected].7"
5762
}
5863
},
5964
"github:jspm/[email protected]": {
@@ -63,7 +68,7 @@ SystemJS.config({
6368
},
6469
"github:jspm/[email protected]": {
6570
"map": {
66-
"http-browserify": "npm:stream-http@2.1.1"
71+
"http-browserify": "npm:stream-http@2.2.0"
6772
}
6873
},
6974
"github:jspm/[email protected]": {
@@ -83,12 +88,12 @@ SystemJS.config({
8388
},
8489
8590
"map": {
86-
"base64-js": "npm:base64-js@1.0.4",
91+
"base64-js": "npm:base64-js@1.1.1",
8792
"ieee754": "npm:[email protected]",
8893
"isarray": "npm:[email protected]"
8994
}
9095
},
91-
"npm:[email protected].9": {
96+
"npm:[email protected].10": {
9297
"map": {
9398
"commander": "npm:[email protected]",
9499
"source-map": "npm:[email protected]"
@@ -125,7 +130,7 @@ SystemJS.config({
125130
"readable-stream": "npm:[email protected]"
126131
}
127132
},
128-
"npm:stream-http@2.1.1": {
133+
"npm:stream-http@2.2.0": {
129134
"map": {
130135
"builtin-status-codes": "npm:[email protected]",
131136
"inherits": "npm:[email protected]",

examples/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"test.js"
5050
]
5151
},
52-
"npm:[email protected].2": {
52+
"npm:[email protected].7": {
5353
"browser": {},
5454
"map": {
5555
"buffer": "@empty",

examples/angular2/jspm.config.js

Lines changed: 61 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
SystemJS.config({
2-
packageConfigPaths: [
3-
"npm:@*/*.json",
4-
"npm:*.json",
5-
"github:*/*.json"
6-
],
72
transpiler: "plugin-babel",
83
typescriptOptions: {
94
"module": "es6",
@@ -13,21 +8,59 @@ SystemJS.config({
138
"sourceMap": true,
149
"removeComments": false,
1510
"supportHtmlImports": true
16-
},
11+
},
12+
packages: {
13+
"src": {
14+
"main": "index",
15+
"defaultExtension": "ts",
16+
"meta": {
17+
"*.ts": {
18+
"loader": "ts"
19+
},
20+
"*.css": {
21+
"loader": "css"
22+
},
23+
"*.html": {
24+
"loader": "text"
25+
}
26+
}
27+
},
28+
29+
"meta": {
30+
"*.js": {
31+
"typings": true
32+
}
33+
}
34+
},
35+
36+
"meta": {
37+
"*.js": {
38+
"typings": true
39+
}
40+
}
41+
}
42+
}
43+
});
44+
45+
SystemJS.config({
46+
packageConfigPaths: [
47+
"npm:@*/*.json",
48+
"npm:*.json",
49+
"github:*/*.json"
50+
],
1751
map: {
18-
"angular2": "npm:[email protected].7",
52+
"angular2": "npm:[email protected].9",
1953
"assert": "github:jspm/[email protected]",
2054
"buffer": "github:jspm/[email protected]",
2155
"child_process": "github:jspm/[email protected]",
22-
"clean-css": "npm:[email protected].9",
56+
"clean-css": "npm:[email protected].10",
2357
"constants": "github:jspm/[email protected]",
2458
"core-js": "npm:[email protected]",
2559
"crypto": "github:jspm/[email protected]",
2660
"css": "github:frankwallis/plugin-css@master",
2761
"es6-promise": "npm:[email protected]",
2862
"es6-shim": "npm:[email protected]",
2963
"events": "github:jspm/[email protected]",
30-
"example-service": "github:frankwallis/example-service@master",
3164
"fs": "github:jspm/[email protected]",
3265
"http": "github:jspm/[email protected]",
3366
"https": "github:jspm/[email protected]",
@@ -50,37 +83,7 @@ SystemJS.config({
5083
"vm": "github:jspm/[email protected]",
5184
"zone.js": "npm:[email protected]"
5285
},
53-
5486
packages: {
55-
"src": {
56-
"main": "index",
57-
"defaultExtension": "ts",
58-
"meta": {
59-
"*.ts": {
60-
"loader": "ts"
61-
},
62-
"*.css": {
63-
"loader": "css"
64-
},
65-
"*.html": {
66-
"loader": "text"
67-
}
68-
}
69-
},
70-
"angular2": {
71-
"meta": {
72-
"*.js": {
73-
"typings": true
74-
}
75-
}
76-
},
77-
"rxjs": {
78-
"meta": {
79-
"*.js": {
80-
"typings": true
81-
}
82-
}
83-
},
8487
"github:capaj/[email protected]": {
8588
"map": {
8689
"debug": "npm:[email protected]",
@@ -90,7 +93,7 @@ SystemJS.config({
9093
},
9194
"github:frankwallis/[email protected]": {
9295
"map": {
93-
"typescript": "npm:[email protected].2"
96+
"typescript": "npm:[email protected].7"
9497
}
9598
},
9699
"github:jspm/[email protected]": {
@@ -105,7 +108,7 @@ SystemJS.config({
105108
},
106109
"github:jspm/[email protected]": {
107110
"map": {
108-
"http-browserify": "npm:stream-http@2.1.1"
111+
"http-browserify": "npm:stream-http@2.2.0"
109112
}
110113
},
111114
"github:jspm/[email protected]": {
@@ -128,9 +131,9 @@ SystemJS.config({
128131
"url-browserify": "npm:[email protected]"
129132
}
130133
},
131-
"npm:[email protected].0": {
134+
"npm:[email protected].2": {
132135
"map": {
133-
"bn.js": "npm:bn.js@4.10.4",
136+
"bn.js": "npm:bn.js@4.11.0",
134137
"inherits": "npm:[email protected]",
135138
"minimalistic-assert": "npm:[email protected]"
136139
}
@@ -160,13 +163,13 @@ SystemJS.config({
160163
},
161164
162165
"map": {
163-
"bn.js": "npm:bn.js@4.10.4",
164-
"randombytes": "npm:[email protected].2"
166+
"bn.js": "npm:bn.js@4.11.0",
167+
"randombytes": "npm:[email protected].3"
165168
}
166169
},
167170
168171
"map": {
169-
"bn.js": "npm:bn.js@4.10.4",
172+
"bn.js": "npm:bn.js@4.11.0",
170173
"browserify-rsa": "npm:[email protected]",
171174
"create-hash": "npm:[email protected]",
172175
"create-hmac": "npm:[email protected]",
@@ -177,7 +180,7 @@ SystemJS.config({
177180
},
178181
179182
"map": {
180-
"base64-js": "npm:base64-js@1.0.4",
183+
"base64-js": "npm:base64-js@1.1.1",
181184
"ieee754": "npm:[email protected]",
182185
"isarray": "npm:[email protected]"
183186
}
@@ -187,7 +190,7 @@ SystemJS.config({
187190
"inherits": "npm:[email protected]"
188191
}
189192
},
190-
"npm:[email protected].9": {
193+
"npm:[email protected].10": {
191194
"map": {
192195
"commander": "npm:[email protected]",
193196
"source-map": "npm:[email protected]"
@@ -200,7 +203,7 @@ SystemJS.config({
200203
},
201204
202205
"map": {
203-
"bn.js": "npm:bn.js@4.10.4",
206+
"bn.js": "npm:bn.js@4.11.0",
204207
"elliptic": "npm:[email protected]"
205208
}
206209
},
@@ -229,7 +232,7 @@ SystemJS.config({
229232
"inherits": "npm:[email protected]",
230233
"pbkdf2": "npm:[email protected]",
231234
"public-encrypt": "npm:[email protected]",
232-
"randombytes": "npm:[email protected].2"
235+
"randombytes": "npm:[email protected].3"
233236
}
234237
},
235238
@@ -245,14 +248,14 @@ SystemJS.config({
245248
},
246249
247250
"map": {
248-
"bn.js": "npm:bn.js@4.10.4",
251+
"bn.js": "npm:bn.js@4.11.0",
249252
"miller-rabin": "npm:[email protected]",
250-
"randombytes": "npm:[email protected].2"
253+
"randombytes": "npm:[email protected].3"
251254
}
252255
},
253256
254257
"map": {
255-
"bn.js": "npm:bn.js@4.10.4",
258+
"bn.js": "npm:bn.js@4.11.0",
256259
"brorand": "npm:[email protected]",
257260
"hash.js": "npm:[email protected]",
258261
"inherits": "npm:[email protected]"
@@ -270,13 +273,13 @@ SystemJS.config({
270273
},
271274
272275
"map": {
273-
"bn.js": "npm:bn.js@4.10.4",
276+
"bn.js": "npm:bn.js@4.11.0",
274277
"brorand": "npm:[email protected]"
275278
}
276279
},
277280
278281
"map": {
279-
"asn1.js": "npm:[email protected].0",
282+
"asn1.js": "npm:[email protected].2",
280283
"browserify-aes": "npm:[email protected]",
281284
"create-hash": "npm:[email protected]",
282285
"evp_bytestokey": "npm:[email protected]",
@@ -290,11 +293,11 @@ SystemJS.config({
290293
},
291294
292295
"map": {
293-
"bn.js": "npm:bn.js@4.10.4",
296+
"bn.js": "npm:bn.js@4.11.0",
294297
"browserify-rsa": "npm:[email protected]",
295298
"create-hash": "npm:[email protected]",
296299
"parse-asn1": "npm:[email protected]",
297-
"randombytes": "npm:[email protected].2"
300+
"randombytes": "npm:[email protected].3"
298301
}
299302
},
300303
@@ -323,7 +326,7 @@ SystemJS.config({
323326
"readable-stream": "npm:[email protected]"
324327
}
325328
},
326-
"npm:stream-http@2.1.1": {
329+
"npm:stream-http@2.2.0": {
327330
"map": {
328331
"builtin-status-codes": "npm:[email protected]",
329332
"inherits": "npm:[email protected]",

examples/angular2/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"jspm": {
99
"registry": "github",
1010
"dependencies": {
11-
"angular2": "npm:[email protected].7",
11+
"angular2": "npm:[email protected].9",
1212
"reflect-metadata": "npm:reflect-metadata@^0.1.0",
1313
"rxjs": "npm:[email protected]",
1414
"zone.js": "npm:zone.js@^0.5.10"
@@ -57,7 +57,7 @@
5757
"crypto": "@empty"
5858
}
5959
},
60-
"npm:[email protected].2": {
60+
"npm:[email protected].7": {
6161
"browser": {},
6262
"map": {
6363
"buffer": "@empty",

0 commit comments

Comments
 (0)