Skip to content

Commit 306f507

Browse files
committed
fixed wrong paths
1 parent bc1a5cb commit 306f507

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/.idea/
2+
vendor

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# react-babel
22

3-
Using [React](http://facebook.github.io/react/)
4-
with [Babel](https://babeljs.io/).
3+
Using [React](http://facebook.github.io/react/) with JSX, ES6 modules and all other ES6 and experimental ES7
4+
features provided by [Babel](https://babeljs.io/) transpiler. ES6 files are transpiled on fly (and cached) by the browser
5+
alone (no Grunt/Gulp/Broccoli processing is needed).
56

67
## Install
78

89
```
910
bower install
11+
```
12+
13+
## Launch
14+
15+
```
1016
http-server -p 3000
1117
open http://localhost:3000
1218
```

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"react": "~0.13.0",
2020
"reflux": "~0.2.6",
2121
"requirejs_text": "requirejs-text#~2.0.14",
22-
"requirejs_babel_fork": "hipertracker/requirejs-babel"
22+
"requirejs_babel": "hipertracker/requirejs-babel"
2323
}
2424
}

require-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var require = {
44
paths: {
55
app: './app',
66

7-
babel: 'vendor/requirejs_babel/babel-4.6.6.min',
7+
babel: 'vendor/requirejs_babel/babel-4.7.8.min',
88
babel_polyfill: 'vendor/browser-polyfill',
99
es6: 'vendor/requirejs_babel/es6',
1010

0 commit comments

Comments
 (0)