forked from aaronshaf/react-toggle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack-old.config.js
76 lines (71 loc) · 1.81 KB
/
webpack-old.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import CopyWebpackPlugin from 'copy-webpack-plugin';
import path from 'path';
export default {
entry: path.join(__dirname, 'src/docs/index.js'),
devtool: 'source-map',
output: {
path: path.join(__dirname, 'dist/docs'),
filename: 'bundle.js',
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: {
babelrc: false,
cacheDirectory: true,
presets: [
'flow',
[
'env',
{
useBuiltIns: true,
modules: false,
debug: false,
targets: {
web: true,
},
},
],
'stage-0',
'react',
],
env: {
production: {
presets: ['react-optimize'],
plugins: ['transform-class-properties'],
},
},
plugins: [
'transform-class-properties',
'transform-react-jsx-source',
// // This decorates our components with __self prop to JSX elements,
// // which React will use to generate some runtime warnings.åå
'transform-react-jsx-self',
],
},
},
],
},
{
test: /\.css$/,
loader: 'style-loader!css-loader',
},
],
},
devServer: {
contentBase: path.join(__dirname, 'dist/docs'),
host: 'localhost',
inline: true,
info: false,
},
plugins: [
new CopyWebpackPlugin([
{ from: path.join(__dirname, 'src/docs/index.html') },
]),
],
};