Permalink
Please sign in to comment.
Showing
with
20 additions
and 15 deletions.
- +2 −1 .babelrc
- +1 −1 client/index.js
- +1 −1 common/app/App.jsx
- +2 −2 common/app/Cat.js
- +1 −1 common/app/components/Footer/index.js
- +1 −1 common/app/components/Nav/index.js
- +1 −1 common/app/index.js
- +1 −1 common/app/routes/Hikes/flux/index.js
- +1 −1 common/app/routes/Jobs/flux/index.js
- +8 −4 package.json
- +1 −1 server/boot/a-react.js
3
.babelrc
@@ -1,3 +1,4 @@ | |||
{ | { | ||
- "stage": 0 | + "presets": ["es2015", "react", "stage-0"], | ||
+ "plugins": ["babel-plugin-add-module-exports"] | |||
} | } |
2
client/index.js
2
common/app/App.jsx
4
common/app/Cat.js
2
common/app/components/Footer/index.js
@@ -1 +1 @@ | |||
-export { default as Footer } from './Footer.jsx'; | +export default from './Footer.jsx'; |
2
common/app/components/Nav/index.js
@@ -1 +1 @@ | |||
-export { default as Nav } from './Nav.jsx'; | +export default from './Nav.jsx'; |
2
common/app/index.js
@@ -1 +1 @@ | |||
-export { default as app$ } from './app-stream.jsx'; | +export default from './app-stream.jsx'; |
2
common/app/routes/Hikes/flux/index.js
@@ -1 +1 @@ | |||
-export { default as HikesActions } from './Actions'; | +export default from './Actions'; |
2
common/app/routes/Jobs/flux/index.js
@@ -1 +1 @@ | |||
-export { default as JobActions } from './Actions'; | +export default from './Actions'; |
12
package.json
2
server/boot/a-react.js
0 comments on commit
4341a3e