-
Notifications
You must be signed in to change notification settings - Fork 8
/
webpack.config.js
107 lines (94 loc) · 2.03 KB
/
webpack.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
var webpack = require('webpack')
var StaticSiteGeneratorPlugin = require('static-site-generator-webpack-plugin')
var marked = require('marked')
var markedExample = require('marked-example')
var postcssImport = require('postcss-import')
var postcssCustomProperties = require('postcss-custom-properties')
var postcssColorFunction = require('postcss-color-function')
var cssnano = require('cssnano')
var pkg = require('basscss/package.json')
var renderer = new marked.Renderer()
renderer.code = markedExample({
classes: {
container: 'mb2 border border-thick border-darken rounded',
rendered: 'p2 border-bottom border-thick border-darken',
code: 'h5 m0 p2 border-none rounded-bottom',
}
})
module.exports = {
entry: {
docs: [
'./src/index'
],
dev: [
'webpack-dev-server/client?http://localhost:8080',
'webpack/hot/only-dev-server',
'./src/dev'
]
},
output: {
filename: '[name].bundle.js',
path: __dirname,
libraryTarget: 'umd'
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loaders: [
'react-hot',
'babel'
]
},
{
test: /\.json$/,
loader: 'json'
},
{
test: /\.md$/,
loaders: [
'html',
'markdown'
]
},
{
test: /\.css$/,
loaders: [
'css',
'postcss'
]
},
{
test: /\.png$/,
loader: 'file-loader?name=/images/[hash].[ext]'
}
]
},
plugins: [
new StaticSiteGeneratorPlugin('docs.bundle.js', [
'/',
'/404.html'
], pkg),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
markdownLoader: { renderer },
postcss: function () {
return [
postcssImport(),
postcssCustomProperties(),
postcssColorFunction(),
cssnano()
]
},
devServer: {
historyApiFallback: {
index: '/dev.bundle'
},
hot: true
},
node: {
fs: 'empty'
}
}