mirror of https://github.com/seald/nedb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.9 KiB
69 lines
1.9 KiB
'use strict'
|
|
|
|
import { dirname, resolve, join } from 'node:path'
|
|
import { fileURLToPath } from 'node:url'
|
|
import webpack from 'webpack'
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url))
|
|
|
|
export default (env, argv) => {
|
|
const minimize = argv.env.minimize || false
|
|
|
|
const baseConfig = {
|
|
mode: 'production',
|
|
cache: false,
|
|
watch: false,
|
|
target: 'web',
|
|
optimization: {
|
|
minimize
|
|
},
|
|
output: {
|
|
path: __dirname,
|
|
filename: pathData => `${pathData.chunk.name.toLowerCase()}${minimize ? '.min' : ''}.js`,
|
|
libraryTarget: 'window',
|
|
library: '[name]'
|
|
}
|
|
}
|
|
|
|
const pluginsNedb = [
|
|
new webpack.NormalModuleReplacementPlugin(new RegExp(resolve(__dirname, 'src/storage.js')), resolve(__dirname, 'src/browser/storage.browser.js')),
|
|
new webpack.NormalModuleReplacementPlugin(new RegExp(resolve(__dirname, 'src/customUtils.js')), resolve(__dirname, 'src/browser/customUtils.js')),
|
|
new webpack.NormalModuleReplacementPlugin(new RegExp(resolve(__dirname, 'src/byline.js')), resolve(__dirname, 'src/browser/byline.js'))
|
|
]
|
|
|
|
const polyfillPlugins = [
|
|
new webpack.ProvidePlugin({
|
|
process: 'process/browser',
|
|
Buffer: ['buffer', 'Buffer'],
|
|
setImmediate: ['timers-browserify', 'setImmediate'],
|
|
clearImmediate: ['timers-browserify', 'clearImmediate']
|
|
})
|
|
]
|
|
|
|
return [
|
|
{
|
|
...baseConfig,
|
|
name: 'Nedb',
|
|
plugins: pluginsNedb,
|
|
entry: {
|
|
Nedb: join(__dirname, 'src', 'datastore.js')
|
|
}
|
|
},
|
|
{
|
|
...baseConfig,
|
|
name: 'testUtils',
|
|
plugins: polyfillPlugins,
|
|
resolve: {
|
|
fallback: {
|
|
fs: false,
|
|
path: import.meta.resolve('path-browserify'),
|
|
util: import.meta.resolve('util/'),
|
|
crypto: false
|
|
}
|
|
},
|
|
entry: {
|
|
testUtils: join(__dirname, 'test', 'utils.test.js')
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|