-
Notifications
You must be signed in to change notification settings - Fork 33
/
webpack.config.js
160 lines (154 loc) · 3.39 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
const path = require('path');
const ExtractTextPlugin = require('extract-text-webpack-plugin'); // eslint-disable-line // eslint-disable-line
const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); // eslint-disable-line
const CleanWebpackPlugin = require('clean-webpack-plugin'); // eslint-disable-line
const webpack = require('webpack'); // eslint-disable-line
const pkg = require('./package.json');
const banner = `
React FontIconPicker
React Component to show a picker element to pick font-icons & svg
@author Swashata Ghosh <[email protected]>
@version ${pkg.version}
@link https://github.com/fontIconPicker/react-fonticonpicker
@license MIT
Copyright (c) ${new Date().getFullYear()} Swashata Ghosh <[email protected]>
This software is released under the MIT License.
https://opensource.org/licenses/MIT
`;
const addBanner = new webpack.BannerPlugin({
banner,
raw: false,
entryOnly: true,
include: /\.(js|jsx|css)$/,
});
const extractSass = new ExtractTextPlugin({
filename: 'fonticonpicker.[name].react.css',
});
module.exports = {
entry: {
fonticonpicker: path.join(__dirname, 'src/js/FontIconPicker.js'),
'base-theme': path.join(__dirname, 'src/js/ThemeBase.js'),
'material-theme': path.join(__dirname, 'src/js/ThemeMaterial.js'),
},
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].react.js',
library: 'FontIconPicker',
libraryExport: 'default',
libraryTarget: 'umd',
},
devtool: 'source-map',
externals: {
react: {
commonjs: 'react',
commonjs2: 'react',
amd: 'react',
root: 'React',
},
'react-dom': {
commonjs: 'react-dom',
commonjs2: 'react-dom',
amd: 'react-dom',
root: 'ReactDOM',
},
classnames: {
commonjs: 'classnames',
commonjs2: 'classnames',
amd: 'classnames',
root: 'classNames',
},
'prop-types': {
commonjs: 'prop-types',
commonjs2: 'prop-types',
amd: 'prop-types',
root: 'PropTypes',
},
'react-transition-group': {
commonjs: 'react-transition-group',
commonjs2: 'react-transition-group',
amd: 'react-transition-group',
root: 'ReactTransitionGroup',
},
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
use: ['babel-loader'],
exclude: /node_modules/,
},
{
test: /\.css$/,
use: extractSass.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-loader',
options: {
importLoaders: 1,
sourceMap: true,
},
},
{
loader: 'postcss-loader',
options: {
sourceMap: true,
},
},
],
}),
},
{
test: /\.scss$/,
use: extractSass.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-loader',
options: {
importLoaders: 1,
sourceMap: true,
},
},
{
loader: 'postcss-loader',
options: {
sourceMap: true,
},
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
},
},
],
}),
},
{
test: /\.(woff|woff2|eot|ttf|otf|svg|png|jpg|gif)(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'assets/',
},
},
],
},
],
},
plugins: [
new CleanWebpackPlugin(['dist']),
addBanner,
new UglifyJSPlugin({
sourceMap: true,
}),
extractSass,
],
resolve: {
extensions: ['.js', '.jsx'],
},
mode: 'production',
};