mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
15 lines
327 B
JavaScript
15 lines
327 B
JavaScript
var extend = require('extend'),
|
|
webpack = require('webpack'),
|
|
webpackConfig = require('./webpack.config');
|
|
|
|
var config = {
|
|
plugins: [
|
|
new webpack.optimize.UglifyJsPlugin({minimize: true})
|
|
],
|
|
|
|
output: {
|
|
filename: 'dat.gui.min.js'
|
|
}
|
|
}
|
|
|
|
module.exports = extend(true, webpackConfig, config); |