-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
256 lines (231 loc) · 5.87 KB
/
index.ts
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
import * as webpack from "webpack";
import * as path from "path";
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const ImageminPlugin = require("imagemin-webpack");
export interface SimpleWebPackConfig_v1_Paths {
/**
* Relative path to entry point of your application.
* This file is dependency tree root of your application.
* (transitively references everything from your application)
* @default "src/index.js"
*/
applicationEntryPointFile: string,
/**
* Relative path to where compiled files should be produced.
* @default "dist"
*/
distributionDirectory: string,
/**
* Which directory is publicly accessible on production.
* Typically this folder where your index.html is.
* @default "."
*/
publicContentRoot: string,
}
export const SimpleWebPackConfig_v1_Paths_DEFAULT: SimpleWebPackConfig_v1_Paths = {
applicationEntryPointFile: "src/index.js",
distributionDirectory: "dist",
publicContentRoot: "."
};
export const CommonPathPatterns_v1 = {
fonts: /\.(woff2?|otf|ttf|eot)$/,
documents: /\.(docx?|odt|pdf|xlsx?|txt|rtf)$/,
};
/**
* Represents feature, which can be turned off or on.
* And has configuration when enabled.
*/
type FeatureToggle_v1<T extends object> = {enabled: true} & T | {enabled: false}
export interface SimpleWebPackConfig_v1 {
scripts:
FeatureToggle_v1<{}>,
styles: FeatureToggle_v1<{
extract: boolean;
}>,
images: FeatureToggle_v1<{
optimize: boolean
}>,
copy: FeatureToggle_v1<{
/**
* Pattern used to mach files, which should be copied.
*/
pattern: RegExp | RegExp[]
}>,
paths: SimpleWebPackConfig_v1_Paths,
}
export function provideConfiguration(
config: SimpleWebPackConfig_v1,
projectAbsoluteRootPath: string
): (env: any, options: webpack.Configuration) => webpack.Configuration
{
console.log(projectAbsoluteRootPath);
if (!path.isAbsolute(projectAbsoluteRootPath)) {
throw new Error("Project root path must be an absolute path.");
}
const evaluate = (production: boolean): {
rules: webpack.RuleSetRule[],
plugins: webpack.WebpackPluginInstance[]
} => {
const rules: webpack.RuleSetRule[] = [];
const plugins: webpack.WebpackPluginInstance[] = [];
if (config.scripts.enabled) {
const scriptsOnlyTest = /\.jsx?$/;
rules.push({
test: scriptsOnlyTest,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
sourceMap: true
}
}
});
rules.push({
test: /\.tsx?$/,
exclude: /node_modules/,
use: {
loader: "ts-loader",
// source maps are enabled by tsconfig.json from typescript/* directory
},
},
);
}
if (config.styles.enabled) {
const onlyStylesTest = /\.s?css$/;
rules.push({
test: onlyStylesTest,
use: [
// creates style nodes from JS strings
{
loader: MiniCssExtractPlugin.loader,
},
{
// translates CSS into CommonJS
loader: "css-loader",
options: {
importLoaders: 5,
sourceMap: true
}
},
{
loader: 'postcss-loader',
options: {
sourceMap: true,
postcssOptions: {
plugins: [
["postcss-preset-env"],
]
}
}
},
{
loader: 'resolve-url-loader',
options: {
sourceMap: true,
},
},
{
// compiles Sass to CSS, using Node Sass by default
loader: "sass-loader",
options: {
sourceMap: true,
}
},
]
});
if (config.styles.extract) {
plugins.push(
new MiniCssExtractPlugin({
filename: "[name].css",
chunkFilename: "[id].css"
})
);
}
}
if (config.images.enabled) {
// see https://webpack.js.org/guides/asset-modules
// for those which are imported in stylesheets
rules.push({
test: /\.(png|gif|jpe?g|svg)$/,
type: 'asset/resource',
});
// for those which are imported through javascript
rules.push({
test: /\.(png|gif|jpe?g|svg)$/,
use: [{
loader: "file-loader",
options: {name: '[name].[ext]'},
}],
dependency: {
not: ['url'],
},
});
if (config.images.optimize) {
// Make sure that the plugin is after any plugins that add images, example `CopyWebpackPlugin`
plugins.push(
new ImageminPlugin({
bail: false, // Ignore errors on corrupted images
cache: true,
imageminOptions: {
// Lossless optimization with custom option
// Feel free to experement with options for better result for you
plugins: [
['gifsicle', {interlaced: true}],
['mozjpeg', {
progressive: true,
quality: 75,
}],
['optipng', {optimizationLevel: 5}],
['svgo', {removeViewBox: true}],
]
}
})
);
}
}
if (config.copy.enabled) {
rules.push({
test: config.copy.pattern,
use: [
{
loader: "file-loader",
options: {name: '[name].[ext]'}
}
],
dependency: {
not: ['url'],
},
});
}
return { rules, plugins };
};
const absolutize = (relative: string): string =>
path.resolve(projectAbsoluteRootPath, relative);
return (env, options) => {
const isProduction = options.mode === 'production';
const result = evaluate(isProduction);
return {
entry: absolutize(config.paths.applicationEntryPointFile),
output: {
path: absolutize(config.paths.distributionDirectory),
},
devtool: isProduction ? "source-map" : "inline-source-map",
devServer: {
// The bundled files will be available in the browser under this path...
publicPath: "/" + path.relative(
absolutize(config.paths.publicContentRoot),
absolutize(config.paths.distributionDirectory)
),
// Tell the server where to serve content from.
contentBase: absolutize(config.paths.publicContentRoot),
},
module: {
rules: result.rules
},
plugins: result.plugins,
resolve: {
extensions: ['.ts', '.js', '.json', '.css', '.scss'],
}
};
};
}