Skip to content

Commit 462a7e5

Browse files
committed
Attempting to fix webpack build
1 parent 4271889 commit 462a7e5

15 files changed

+41
-14
lines changed

.babelrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"presets": [
33
"env",
4-
"stage-0"
4+
"stage-0",
5+
"react"
56
]
67
}

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"scripts": {
77
"prepublish": "babel src --out-dir dist",
88
"start": "webpack-dev-server",
9-
"build": "static-react site/App.js > site/index.html && NODE_ENV=production webpack -p",
9+
"build": "NODE_ENV=production webpack -p --progress --colors",
10+
"static": "static-react site/App.js > site/index.html",
1011
"deploy": "gh-pages -d site",
1112
"test": "ava"
1213
},

site/App.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const initialState = {
1717
color: colors[4]
1818
}
1919

20-
module.exports = createProvider(initialState)(props => (
20+
const App = createProvider(initialState)(props => (
2121
x(Wrap)([
2222
x(Style)(),
2323
x(Nav)(),
@@ -29,3 +29,5 @@ module.exports = createProvider(initialState)(props => (
2929
])
3030
])
3131
))
32+
33+
module.exports = App

site/Bar.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ const { connect } = require('funcup')
33
const { Box } = require('../src')
44

55
const map = s => ({ color: s.color })
6-
module.exports = connect(map)(props => x(Box)({
6+
7+
const Bar = connect(map)(props => x(Box)({
78
my: 2,
89
css: {
910
width: 64,
1011
height: 4,
1112
backgroundColor: props.color[5]
1213
}
1314
}))
15+
module.exports = Bar

site/Border.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ const x = require('reaxe')
22
const { connect } = require('funcup')
33
const { Box } = require('../src')
44

5-
module.exports = connect()(props => x(Box)({
5+
const Border = connect()(props => x(Box)({
66
...props,
77
css: {
88
borderWidth: 1,
99
borderStyle: 'solid',
1010
borderColor: props.color[5]
1111
}
1212
}))
13+
module.exports = Border

site/Button.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const x = require('reaxe')
22
const { connect } = require('funcup')
33
const { Button } = require('../src')
44

5-
module.exports = props => x(Button)({
5+
const Btn = props => x(Button)({
66
...props,
77
css: {
88
fontSize: 12,
@@ -20,3 +20,5 @@ module.exports = props => x(Button)({
2020
}
2121
}
2222
})
23+
24+
module.exports = Btn

site/Container.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
const x = require('reaxe')
22
const { Box } = require('../src')
33

4-
module.exports = props => x(Box)({
4+
const Container = props => x(Box)({
55
...props,
66
mx: 'auto',
77
css: {
88
maxWidth: 1024
99
}
1010
})
11+
12+
module.exports = Container

site/Examples.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const {
1919
} = axs
2020
const Style = require('./Style')
2121

22-
module.exports = connect()(props => {
22+
const Examples = connect()(props => {
2323
const scope = Object.assign({}, axs, {
2424
color: props.color
2525
})
@@ -93,6 +93,8 @@ module.exports = connect()(props => {
9393
])
9494
})
9595

96+
module.exports = Examples
97+
9698
const grid = {
9799
name: 'Responsive Grid',
98100
code: `<Flex.wrap>

site/Features.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const {
77
} = require('../src')
88
const Bar = require('./Bar')
99

10-
module.exports = props => x.section([
10+
const Features = props => x.section([
1111
x(Flex.wrap)({ mx: -2, my: 4 }, ...features.map(feature => (
1212
x(Box)({ px: 2, py: 3, w: [ 1, 1/2 ] }, ...[
1313
x(Bar)(),
@@ -17,6 +17,8 @@ module.exports = props => x.section([
1717
)))
1818
])
1919

20+
module.exports = Features
21+
2022
const features = [
2123
{
2224
heading: 'Responsive Typography and Layout',

site/Footer.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const NavLink = require('./NavLink')
88
const Logo = require('./Logo')
99
const { inc } = require('./updaters')
1010

11-
module.exports = connect()(props => x(Color)({
11+
const Footer = connect()(props => x(Color)({
1212
is: 'footer',
1313
color: props.color[5]
1414
}, ...[
@@ -41,3 +41,5 @@ module.exports = connect()(props => x(Color)({
4141
}),
4242
]),
4343
]))
44+
45+
module.exports = Footer

site/Header.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const {
1111
const Button = require('./Button')
1212
const { inc } = require('./updaters')
1313

14-
module.exports = connect()(props => (
14+
const Header = connect()(props => (
1515
x(Box)({
1616
py: 4,
1717
css: {
@@ -64,3 +64,5 @@ module.exports = connect()(props => (
6464
])
6565
])
6666
))
67+
68+
module.exports = Header

site/Nav.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const Logo = require('./Logo')
1010
const NavLink = require('./NavLink')
1111
const { nav } = x
1212

13-
module.exports = connect()(props => nav([
13+
const Nav = connect()(props => nav([
1414
x(Color)({
1515
color: props.color[5]
1616
}, ...[
@@ -23,3 +23,5 @@ module.exports = connect()(props => nav([
2323
])
2424
])
2525
]))
26+
27+
module.exports = Nav

site/NavLink.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const x = require('reaxe')
22
const { Text } = require('../src')
33

4-
module.exports = props => x(Text)({
4+
const NavLink = props => x(Text)({
55
...props,
66
is: 'a',
77
css: {
@@ -17,3 +17,5 @@ module.exports = props => x(Text)({
1717
}
1818
}
1919
})
20+
21+
module.exports = NavLink

site/Wrap.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
const x = require('reaxe')
22
const { Box } = require('../src')
33

4-
module.exports = props => x(Box)({
4+
const Wrap = props => x(Box)({
55
...props,
66
px: [ 2, null, 3, 4 ]
77
})
8+
9+
module.exports = Wrap

webpack.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
const path = require('path')
22

33
module.exports = {
4+
devtool: false,
5+
46
entry: './site/entry.js',
57

68
output: {

0 commit comments

Comments
 (0)