Skip to content

Commit 802eabe

Browse files
committed
fix path probs... somehow
1 parent ca6cea5 commit 802eabe

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

app/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react';
2-
import App from './components/app';
2+
import App from './components/app.js';
33

44
React.render(
55
<App/>,

config.js

+5-6
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ System.config({
1515

1616
System.config({
1717
"map": {
18-
"babel": "npm:[email protected].7",
19-
"babel-runtime": "npm:[email protected].7",
18+
"babel": "npm:[email protected].10",
19+
"babel-runtime": "npm:[email protected].10",
2020
"bootstrap": "github:twbs/[email protected]",
2121
"core-js": "npm:[email protected]",
2222
"css": "github:systemjs/[email protected]",
23+
"edrex/hello-component": "github:edrex/[email protected]",
2324
"hello": "github:edrex/[email protected]",
2425
"react": "npm:[email protected]",
2526
"github:edrex/[email protected]": {
@@ -81,7 +82,7 @@ System.config({
8182
8283
"util": "npm:[email protected]"
8384
},
84-
"npm:[email protected].7": {
85+
"npm:[email protected].10": {
8586
"process": "github:jspm/[email protected]"
8687
},
8788
@@ -163,10 +164,8 @@ System.config({
163164
"inherits": "npm:[email protected]",
164165
"isarray": "npm:[email protected]",
165166
"process": "github:jspm/[email protected]",
166-
"stream": "github:jspm/[email protected]",
167167
"stream-browserify": "npm:[email protected]",
168-
"string_decoder": "npm:[email protected]",
169-
"util": "github:jspm/[email protected]"
168+
"string_decoder": "npm:[email protected]"
170169
},
171170
172171
"amdefine": "npm:[email protected]",

index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
<body>
88
<div id="main"></div>
99

10-
<script src="https://jspm.io/system@0.16.7.js"></script>
10+
<script src="jspm_packages/system.js"></script>
1111
<script src="config.js"></script>
1212
<script>
13-
System.import('app/main');
13+
System.import('app/main.js');
1414
</script>
1515
</body>
1616
</html>

0 commit comments

Comments
 (0)