forked from taozhi8833998/node-sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
171 lines (162 loc) · 6.17 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
const CopyPlugin = require('copy-webpack-plugin')
const FileManagerPlugin = require('filemanager-webpack-plugin')
const fs = require('fs')
const path = require('path')
const webpack = require('webpack')
const nodeExternals = require('webpack-node-externals')
const isCoverage = process.env.NODE_ENV === 'coverage'
const isProd = process.argv.includes('--prod')
const isTest = isCoverage || process.argv.includes('--test')
const subDir = isProd ? 'output/prod' : isTest ? 'output/test' : 'output/dev'
const outputPath = path.join(__dirname, subDir)
const srcPath = path.join(__dirname, 'src')
require('rimraf').sync(outputPath)
if (isProd) require('./typegen')
const moduleCfg = {
rules: [
{
test: /\.m?js$/,
exclude: /(node_modules|bower_components)/,
use: isCoverage
? {
loader: 'istanbul-instrumenter-loader',
options: { esModules: true },
}
: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
},
enforce: 'post',
},
{
test: /\.pegjs$/,
loader: 'pegjs-loader?dependencies={"BigInt":"big-integer"}'
}
],
}
const getCopyFile = (database) => {
return [
{ source: `${outputPath}/${database}.js`, destination: `${outputPath}/build/${database}.js` },
{ source: `${outputPath}/${database}.js.map`, destination: `${outputPath}/build/${database}.js.map` },
{ source: `${outputPath}/${database}.d.ts`, destination: `${outputPath}/build/${database}.d.ts` },
]
}
const getDbFile = () => ['bigquery', 'db2', 'hive', 'mariadb', 'mysql', 'postgresql', 'transactsql', 'flinksql'].map(getCopyFile).reduce((prev, curr) => [...prev, ...curr], [])
const getSrcFile = () => fs.readdirSync(srcPath).filter(name => name !== 'parser.all.js' || name !== 'parser.single.js').map(name => ({ source: `${outputPath}/${name}`, destination: `${outputPath}/lib/${name}` }))
const getPlugins = (parserName, target, plugins) => [
new webpack.DefinePlugin({
PARSER_NAME: parserName ? JSON.stringify(parserName) : 'null',
}),
...(plugins || []),
...(isProd
? [
new CopyPlugin({
patterns: [
'LICENSE',
'lib',
'README.md',
'package.json',
'types.d.ts',
'ast/**',
{
from: 'index.d.ts',
to: (parserName || 'index') + (target === 'web' ? '.umd' : '') + '.d.ts',
}
],
}),
new FileManagerPlugin({
onEnd: {
mkdir: [
`${outputPath}/umd`,
`${outputPath}/build`,
`${outputPath}/lib`,
],
copy: [
{ source: `${outputPath}/*.umd.d.ts`, destination: `${outputPath}/umd` },
{ source: `${outputPath}/*.umd.js`, destination: `${outputPath}/umd` },
{ source: `${outputPath}/*.umd.js.map`, destination: `${outputPath}/umd` },
],
move: [
...getDbFile(),
...getSrcFile(),
],
delete: [
`${outputPath}/*.umd.d.ts`,
`${outputPath}/*.umd.js`,
`${outputPath}/*.umd.js.map`,
`${outputPath}/index.d.ts`
]
}
})
] : [
])
]
const getOutput = (target) => ({
path: outputPath,
library: '',
libraryTarget: target === 'web' ? 'umd' : 'commonjs',
// this ensures that source maps are mapped to actual files (not "webpack:" uris)
devtoolModuleFilenameTemplate: info => path.resolve(__dirname, info.resourcePath),
})
function buildConfig(parserName, target, entry, plugins) {
const watch = !(isProd || isTest || isCoverage)
return {
devtool: 'source-map',
externals: target == 'web' ? [] : [
nodeExternals({
whitelist: ['webpack/hot/poll?100'],
}),
],
entry,
watch,
target,
mode: isProd ? 'production' : 'development',
node: { __dirname: false },
module: moduleCfg,
resolve: { extensions: ['.js', '.pegjs'] },
plugins: getPlugins(parserName, target, plugins),
output: getOutput(target),
}
}
// =========== PROD CONFIG ================
if (isProd) {
const config = module.exports = []
for (const target of ['web', 'node']) {
config.push(
// full bundle
buildConfig(null, target, {
['index' + (target === 'web' ? '.umd' : '')]: ['./index.js'],
}),
// Add one light bundle per language
...fs.readdirSync(path.join(__dirname, 'pegjs'))
.map(x => /^(.+)\.pegjs$/.exec(x))
.filter(x => !!x)
.map(x => x[1])
.map(parser =>
buildConfig(parser, target, {
[parser + (target === 'web' ? '.umd' : '')]: ['./index.js'],
}, [
new webpack.NormalModuleReplacementPlugin(
/parser\.all/,
'./parser.single'
),
new webpack.NormalModuleReplacementPlugin(
/mysql\.pegjs/,
'../pegjs/' + parser + '.pegjs'
),
])
))
}
} else {
// ============= DEV CONFIG (watch) ==============
module.exports = isTest
? buildConfig(null, 'node', {
'tests': ['./tests-index.js'],
})
// test bundle (HMR)
: buildConfig(null, 'node', {
'tests': ['webpack/hot/poll?100', './tests-index.js'],
}, [new webpack.HotModuleReplacementPlugin()])
}