-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreact.config.js
59 lines (51 loc) · 1.57 KB
/
preact.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
import path from 'path'
import pkg from './package.json'
import { DefinePlugin, ProvidePlugin } from 'webpack'
import MiniCssExtractPlugin from 'mini-css-extract-plugin'
import WebpackAliasSyncPlugin from 'webpack-alias-sync-plugin'
const p = str => path.resolve(__dirname, str)
const module = cfg => {
cfg.entry = './components/transition/index.js'
cfg.devtool = 'source-map'
// cfg.mode = 'development'
cfg.mode = 'production'
cfg.output = {
path: p('./lib'),
filename: 'pc-transition.js',
libraryTarget: 'umd',
}
cfg.externals = ['preact/hooks', 'preact']
cfg.optimization.usedExports = true
cfg.plugins = [
...cfg.plugins.filter(i => i.constructor.name === 'ProgressPlugin'),
new MiniCssExtractPlugin({
filename: 'pc-transition.css',
chunkFilename: 'pc-transition.css',
}),
new ProvidePlugin({
h: ['preact', 'h'],
Fragment: ['preact', 'Fragment'],
}),
new DefinePlugin({
'process.env.VERSION': JSON.stringify(pkg.version),
'process.env.NODE_ENV': JSON.stringify('production'),
}),
]
// console.log('TCL: cfg', cfg.plugins)
}
export default (config, env) => {
config.resolve.alias = {
...config.resolve.alias,
mock: p('./mocks/'),
lib: p('./src/libs/'),
img: p('./src/images/'),
util: p('./src/utils/'),
srv: p('./src/services'),
com: p('./src/components/'),
}
config.node.process = 'mock'
config.node.Buffer = true
env.isProd && (config.output.publicPath = '/pc-transition/')
config.plugins.push(new WebpackAliasSyncPlugin())
if (env.module) module(config)
}