This repository has been archived by the owner on Jul 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
webpack.config.js
233 lines (221 loc) · 6 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const DefinePlugin = require('webpack/lib/DefinePlugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const FaviconsWebpackPlugin = require('favicons-webpack-plugin');
const StyleLintPlugin = require('stylelint-webpack-plugin');
// Helper functions
const ROOT = path.resolve(__dirname, '.');
const isProd = process.env.NODE_ENV === "production";
const extractCSS = new ExtractTextPlugin({
filename: "/_openshiftio/[name].css",
disable: !isProd
});
let webpackCopyPlugin;
if (isProd) {
// In prod the docker container does this
webpackCopyPlugin = new CopyWebpackPlugin([
{
from: 'src/config',
to: 'config'
},
{
from: 'manifest.json',
to: '_openshiftio/',
toType: 'dir'
}
]);
} else {
webpackCopyPlugin = new CopyWebpackPlugin([
{
from: 'src/config',
to: '_config',
transform: function env(content, path) {
return content.toString('utf-8').replace(/{{ .Env.([a-zA-Z0-9_-]*) }}/g, function (match, p1, offset, string) {
return process.env[p1];
});
}
},
{
from: 'manifest.json',
to: '_openshiftio/',
toType: 'dir'
}
]);
}
module.exports = {
entry: {
app: './src/app/index',
clicktale: './src/app/clicktale/ctIframe'
},
devtool: (isProd ? 'cheap-module-source-map' : 'inline-source-map'),
output: {
filename: '/_openshiftio/[name].js',
path: (isProd ? path.join(ROOT, '/dist') : '/')
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/
}, {
test: /\.css$/,
use: extractCSS.extract({
fallback: 'style-loader',
use: [{
loader: 'css-loader',
options: {
minimize: true,
sourceMap: true
}
}
]
})
}, {
test: /\.less$/,
use: extractCSS.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-loader',
options: {
minimize: true,
sourceMap: true
}
}, {
loader: 'less-loader',
options: {
paths: [
path.resolve(__dirname, "node_modules/patternfly/src/less"),
path.resolve(__dirname, "node_modules/patternfly/node_modules")
],
sourceMap: true
}
}
]
})
},
/* File loader for supporting fonts, for example, in CSS files.
*/
{
test: /\.woff2?$|\.ttf$|\.eot$|\.svg$/,
loaders: [
{
loader: "url-loader",
query: {
limit: 3000,
name: '/_openshiftio/assets/fonts/[name].[ext]'
}
}
]
},
{
test: /\.png$|\.jpg$|\.gif$|\.jpeg$/,
loaders: [
{
loader: "url-loader",
query: {
limit: 3000,
name: '/_openshiftio/assets/images/[name].[ext]'
}
}
]
},
{
test: /\.html$/,
use: ['html-loader']
},
]
},
resolve: {
extensions: [".tsx", ".ts", ".js"]
},
plugins: [
/*
* Plugin: HtmlWebpackPlugin
* Description: Simplifies creation of HTML files to serve your webpack bundles.
* This is especially useful for webpack bundles that include a hash in the filename
* which changes every compilation.
*
* See: https://github.com/ampedandwired/html-webpack-plugin
*/
new HtmlWebpackPlugin({
template: 'src/app/index.html',
chunks: ['app'],
chunksSortMode: 'dependency'
}),
// new HtmlWebpackPlugin({
// filename: 'features.html',
// template: 'src/app/pages/features.html',
// chunks: ['app'],
// chunksSortMode: 'dependency'
// }),
// new HtmlWebpackPlugin({
// filename: 'get-involved.html',
// template: 'src/app/pages/get-involved.html',
// chunks: ['app'],
// chunksSortMode: 'dependency'
// }),
// new HtmlWebpackPlugin({
// filename: 'not-authorized.html',
// template: 'src/app/pages/not-authorized.html',
// chunks: ['app'],
// chunksSortMode: 'dependency'
// }),
// new HtmlWebpackPlugin({
// filename: './_openshiftio/clicktale/ctIframe.html',
// template: 'src/app/clicktale/ctIframe.html',
// chunks: ['clicktale']
// }),
new DefinePlugin({
AUTH_API_URL: JSON.stringify(process.env.FABRIC8_WIT_API_URL),
STACK_API_URL: JSON.stringify(process.env.FABRIC8_STACK_API_URL)
}),
/*
* StyleLintPlugin
*/
new StyleLintPlugin({
configFile: '.stylelintrc',
syntax: 'less',
context: 'src',
files: '**/*.less',
failOnError: true,
quiet: false,
}),
extractCSS,
webpackCopyPlugin,
/*
* Generate FavIcons from the master png in all formats
*/
//Commenting the fav icon until we get the new logo
// new FaviconsWebpackPlugin({
// logo: './src/assets/images/favicon.png',
// prefix: '_openshiftio/icons/'
// }),
new CopyWebpackPlugin([
{
from: 'src/assets/static',
to: 'static',
},
]),
],
/*
* Include polyfills or mocks for various node stuff
* Description: Node configuration
*
* See: https://webpack.github.io/docs/configuration.html#node
*/
node: {
global: true,
crypto: 'empty',
process: true,
module: false,
clearImmediate: false,
setImmediate: false
},
devServer: {
port: 3001
}
};