forked from openboxes/openboxes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
115 lines (112 loc) · 3.81 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
const path = require('path');
const ROOT = path.resolve(__dirname, 'src');
const SRC = path.resolve(ROOT, 'js');
const DEST = path.resolve(__dirname, 'web-app');
const ASSETS = path.resolve(ROOT, 'assets');
const JS_DEST = path.resolve(__dirname, 'web-app/js');
const CSS_DEST = path.resolve(__dirname, 'web-app/css');
const GRAILS_VIEWS = path.resolve(__dirname, 'grails-app/views');
const COMMON_VIEW = path.resolve(GRAILS_VIEWS, 'common');
const RECEIVING_VIEW = path.resolve(GRAILS_VIEWS, 'partialReceiving');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: {
app: `${SRC}/index.jsx`,
},
output: {
path: DEST,
filename: 'js/bundle.[hash].js',
chunkFilename: 'js/bundle.[hash].[name].js',
publicPath: '/openboxes/',
},
stats: {
colors: true,
},
plugins: [
new MiniCssExtractPlugin({
filename: 'css/bundle.[hash].css',
chunkFilename: 'css/bundle.[hash].[name].css',
}),
new OptimizeCSSAssetsPlugin({}),
new CleanWebpackPlugin([`${JS_DEST}/bundle.**`, `${CSS_DEST}/bundle.**`]),
new HtmlWebpackPlugin({
filename: `${COMMON_VIEW}/_react.gsp`,
template: `${ASSETS}/grails-template.html`,
inject: false,
templateParameters: compilation => ({
jsSource: `\${createLinkTo(dir:'/js', file:'bundle.${compilation.hash}.js')}`,
cssSource: `\${createLinkTo(dir:'css/', file:'bundle.${compilation.hash}.css')}`,
receivingIfStatement: '',
}),
}),
new HtmlWebpackPlugin({
filename: `${RECEIVING_VIEW}/_create.gsp`,
template: `${ASSETS}/grails-template.html`,
inject: false,
templateParameters: compilation => ({
jsSource: `\${createLinkTo(dir:'/js', file:'bundle.${compilation.hash}.js')}`,
cssSource: `\${createLinkTo(dir:'css/', file:'bundle.${compilation.hash}.css')}`,
receivingIfStatement:
// eslint-disable-next-line no-template-curly-in-string
'<g:if test="${!params.id}">' +
'You can access the Partial Receiving feature through the details page for an inbound shipment.' +
'</g:if>',
}),
}),
],
module: {
rules: [
{
enforce: 'pre',
test: /\.jsx$/,
exclude: /node_modules/,
loader: 'eslint-loader',
},
{
test: /\.jsx$/,
loader: 'babel-loader?presets[]=es2015&presets[]=react&presets[]=stage-1',
include: SRC,
exclude: /node_modules/,
},
{
test: /\.(sa|sc|c)ss$/,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'],
},
{
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader?name=./fonts/[hash].[ext]',
},
{
test: /\.(woff|woff2)$/,
loader: 'url-loader?prefix=font/&limit=5000&name=./fonts/[hash].[ext]',
},
{
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
loader: 'url-loader?limit=10000&mimetype=application/octet-stream&name=./fonts/[hash].[ext]',
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
loader: 'url-loader?limit=10000&mimetype=image/svg+xml&name=./fonts/[hash].[ext]',
},
],
},
resolve: {
alias: {
root: ROOT,
src: SRC,
components: path.resolve(SRC, 'components'),
reducers: path.resolve(SRC, 'reducers'),
actions: path.resolve(SRC, 'actions'),
consts: path.resolve(SRC, 'consts'),
tests: path.resolve(SRC, 'tests'),
utils: path.resolve(SRC, 'utils'),
templates: path.resolve(SRC, 'templates'),
store: path.resolve(SRC, 'store'),
css: path.resolve(ROOT, 'css'),
},
extensions: ['.js', '.jsx'],
},
};