mirror of
https://github.com/zenorocha/clipboard.js.git
synced 2023-08-10 21:12:48 +03:00

This was introduced in order to prevent a name conflict with the new `window.Clipboard` native function
For more info check:
* https://w3c.github.io/clipboard-apis/
* ac319a7ed3
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
const pkg = require('./package.json');
|
|
const path = require('path');
|
|
const webpack = require('webpack');
|
|
|
|
const production = process.env.NODE_ENV === 'production' || false;
|
|
|
|
const banner = `clipboard.js v${pkg.version}
|
|
https://zenorocha.github.io/clipboard.js
|
|
|
|
Licensed MIT © Zeno Rocha`;
|
|
|
|
module.exports = {
|
|
entry: './src/clipboard.js',
|
|
output: {
|
|
filename: production ? 'clipboard.min.js' : 'clipboard.js',
|
|
path: path.resolve(__dirname, 'dist'),
|
|
library: 'ClipboardJS',
|
|
libraryTarget: 'umd'
|
|
},
|
|
module: {
|
|
rules: [
|
|
{test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader'}
|
|
]
|
|
},
|
|
plugins: production ? [
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
beautify: false,
|
|
mangle: {
|
|
screw_ie8: true,
|
|
keep_fnames: true
|
|
},
|
|
compress: {
|
|
screw_ie8: true
|
|
},
|
|
comments: false
|
|
}),
|
|
new webpack.BannerPlugin({banner})
|
|
] : [
|
|
new webpack.BannerPlugin({banner})
|
|
]
|
|
};
|