oboe
Version:
Oboe.js reads json, giving you the objects as they are found without waiting for the stream to finish
23 lines (20 loc) • 490 B
JavaScript
const path = require('path')
const fs = require('fs')
const webpack = require('webpack')
const version = fs.readFileSync('./build/version.txt', 'utf8')
module.exports = {
mode: 'production',
entry: './src/entry.js',
target: 'node',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'oboe-node.js',
library: 'oboe',
libraryTarget: 'umd2',
libraryExport: 'default',
umdNamedDefine: true
},
plugins: [
new webpack.BannerPlugin(version)
]
}