dat.gui/rollup.config.min.js
efokschaner fdcd266249 Add named exports.
`import dat from 'dat.gui'` is now interchangeable with
`import * as dat from 'dat.gui'`
2018-05-05 14:48:56 -07:00

38 lines
991 B
JavaScript

/**
* dat-gui JavaScript Controller Library
* http://code.google.com/p/dat-gui
*
* Copyright 2011 Data Arts Team, Google Creative Lab
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
import fs from 'fs';
import path from 'path';
import defaultConfig from './rollup.config';
import uglify from 'rollup-plugin-uglify';
const banner = fs.readFileSync(path.join(__dirname, 'licenseBanner.txt'));
export default Object.assign({}, defaultConfig, {
output: {
exports: 'named',
file: './build/dat.gui.min.js',
format: 'umd',
name: 'dat',
banner: banner
},
plugins: [...defaultConfig.plugins, uglify({
output: {
// Preserve license commenting in minified build.
comments: function(node, comment) {
return comment.type === 'comment2';
}
}
})]
});