-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
177 lines (177 loc) · 6.45 KB
/
index.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
"use strict";
exports.__esModule = true;
exports.provideConfiguration = exports.CommonPathPatterns_v1 = exports.SimpleWebPackConfig_v1_Paths_DEFAULT = void 0;
var path = require("path");
var MiniCssExtractPlugin = require("mini-css-extract-plugin");
var ImageminPlugin = require("imagemin-webpack");
exports.SimpleWebPackConfig_v1_Paths_DEFAULT = {
applicationEntryPointFile: "src/index.js",
distributionDirectory: "dist",
publicContentRoot: "."
};
exports.CommonPathPatterns_v1 = {
fonts: /\.(woff2?|otf|ttf|eot)$/,
documents: /\.(docx?|odt|pdf|xlsx?|txt|rtf)$/
};
function provideConfiguration(config, projectAbsoluteRootPath) {
console.log(projectAbsoluteRootPath);
if (!path.isAbsolute(projectAbsoluteRootPath)) {
throw new Error("Project root path must be an absolute path.");
}
var evaluate = function (production) {
var rules = [];
var plugins = [];
if (config.scripts.enabled) {
var 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"
}
});
}
if (config.styles.enabled) {
var 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,
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: rules, plugins: plugins };
};
var absolutize = function (relative) {
return path.resolve(projectAbsoluteRootPath, relative);
};
return function (env, options) {
var isProduction = options.mode === 'production';
var 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']
}
};
};
}
exports.provideConfiguration = provideConfiguration;