Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 7546da7

Browse files
committed
Merge pull request #39 from Microsoft/updateJSPM
Update jspm
2 parents 1065373 + e77fc1f commit 7546da7

File tree

7 files changed

+3079
-16
lines changed

7 files changed

+3079
-16
lines changed

jspm/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jspm_packages

jspm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
```
33
npm install -g jspm@beta
44
jspm install
5-
5+
jspm dl-loader --edge
66
```
77

88
**run:**

jspm/config.js

Lines changed: 38 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,59 @@
11
System.config({
2-
"baseURL": "/",
3-
"defaultJSExtensions": true,
4-
"transpiler": "typescript",
5-
"paths": {
2+
baseURL: "/",
3+
defaultJSExtensions: true,
4+
transpiler: "typescript",
5+
paths: {
66
"*": "src/*",
77
"src": "src",
88
"github:*": "jspm_packages/github/*",
99
"npm:*": "jspm_packages/npm/*"
1010
},
11-
"packages": {
11+
12+
packages: {
1213
"/src": {
1314
"defaultExtension": "ts"
1415
}
15-
}
16-
});
16+
},
1717

18-
System.config({
19-
"map": {
18+
map: {
2019
"core-js": "npm:[email protected]",
21-
"typescript": "github:mhegazy/[email protected]",
20+
"typescript": "npm:[email protected]",
21+
"github:jspm/[email protected]": {
22+
"buffer": "npm:[email protected]"
23+
},
24+
"github:jspm/[email protected]": {
25+
"os-browserify": "npm:[email protected]"
26+
},
27+
"github:jspm/[email protected]": {
28+
"path-browserify": "npm:[email protected]"
29+
},
2230
"github:jspm/[email protected]": {
2331
"process": "npm:[email protected]"
2432
},
33+
34+
"base64-js": "npm:[email protected]",
35+
"ieee754": "npm:[email protected]",
36+
"is-array": "npm:[email protected]"
37+
},
2538
2639
"fs": "github:jspm/[email protected]",
2740
"process": "github:jspm/[email protected]",
2841
"systemjs-json": "github:systemjs/[email protected]"
42+
},
43+
44+
"os": "github:jspm/[email protected]"
45+
},
46+
47+
"process": "github:jspm/[email protected]"
48+
},
49+
50+
"buffer": "github:jspm/[email protected]",
51+
"child_process": "github:jspm/[email protected]",
52+
"fs": "github:jspm/[email protected]",
53+
"os": "github:jspm/[email protected]",
54+
"path": "github:jspm/[email protected]",
55+
"process": "github:jspm/[email protected]",
56+
"readline": "github:jspm/[email protected]"
2957
}
3058
}
3159
});
32-

jspm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"core-js": "npm:core-js@^0.9.4"
66
},
77
"devDependencies": {
8-
"typescript": "npm:typescript"
8+
"typescript": "npm:typescript@1.5.3"
99
}
1010
}
1111
}

0 commit comments

Comments
 (0)