react-input-range-rtl
Version:
React component for inputting numeric values within a range
64 lines (61 loc) • 1.43 kB
JavaScript
import ExtractTextPlugin from 'extract-text-webpack-plugin';
import UglifyJsPlugin from 'uglifyjs-webpack-plugin';
import path from 'path';
const webpackConfig = {
context: __dirname,
devtool: 'source-map',
target: 'web',
entry: {
'react-input-range.css': './src/scss/index.scss',
'react-input-range.js': './src/js/index.js',
'react-input-range.min.js': './src/js/index.js',
},
output: {
filename: '[name]',
path: path.resolve(__dirname, 'lib/bundle'),
library: 'InputRange',
libraryTarget: 'umd',
},
module: {
rules: [
{
include: path.resolve(__dirname, 'src'),
loader: 'babel-loader',
test: /\.jsx?$/,
},
{
include: path.resolve(__dirname, 'src'),
loader: ExtractTextPlugin.extract({
use: ['css-loader', 'postcss-loader', 'sass-loader'],
}),
test: /\.scss$/,
},
],
},
plugins: [
new ExtractTextPlugin('[name]'),
new UglifyJsPlugin({
sourceMap: true,
test: /\.min\.js$/,
}),
],
resolve: {
modules: ['node_modules'],
extensions: ['.js', '.jsx'],
},
externals: {
react: {
amd: 'react',
commonjs: 'react',
commonjs2: 'react',
root: 'React',
},
'react-dom': {
amd: 'react-dom',
commonjs: 'react-dom',
commonjs2: 'react-dom',
root: 'ReactDOM',
},
},
};
export default webpackConfig;