-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathoptimize-css-webpack-plugin.ts
145 lines (126 loc) · 4.51 KB
/
optimize-css-webpack-plugin.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
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import * as cssNano from 'cssnano';
import { ProcessOptions, Result } from 'postcss';
import { Compiler, compilation } from 'webpack';
import { RawSource, Source, SourceMapSource } from 'webpack-sources';
import { addWarning } from '../../utils/webpack-diagnostics';
import { isWebpackFiveOrHigher } from '../../utils/webpack-version';
export interface OptimizeCssWebpackPluginOptions {
sourceMap: boolean;
test: (file: string) => boolean;
}
const PLUGIN_NAME = 'optimize-css-webpack-plugin';
function hook(
compiler: Compiler,
action: (compilation: compilation.Compilation, assetsURI: string[]) => Promise<void>,
) {
compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => {
if (isWebpackFiveOrHigher()) {
// webpack 5 migration "guide"
// https://github.com/webpack/webpack/blob/07fc554bef5930f8577f91c91a8b81791fc29746/lib/Compilation.js#L527-L532
// TODO_WEBPACK_5 const stage = Compilation.PROCESS_ASSETS_STAGE_OPTIMIZE;
const stage = 100;
// tslint:disable-next-line: no-any
(compilation.hooks as any)
.processAssets.tapPromise({name: PLUGIN_NAME, stage}, (assets: Record<string, Source>) => {
return action(compilation, Object.keys(assets));
});
} else {
compilation.hooks.optimizeChunkAssets
.tapPromise(PLUGIN_NAME, (chunks: Iterable<compilation.Chunk>) => {
const files: string[] = [];
for (const chunk of chunks) {
if (!chunk.files) {
continue;
}
for (const file of chunk.files) {
files.push(file);
}
}
return action(compilation, files);
});
}
});
}
export class OptimizeCssWebpackPlugin {
private readonly _options: OptimizeCssWebpackPluginOptions;
constructor(options: Partial<OptimizeCssWebpackPluginOptions>) {
this._options = {
sourceMap: false,
test: file => file.endsWith('.css'),
...options,
};
}
apply(compiler: Compiler): void {
hook(compiler, (compilation: compilation.Compilation, assetsURI: string[]) => {
const files = [...compilation.additionalChunkAssets, ...assetsURI];
const actions = files
.filter(file => this._options.test(file))
.map(async file => {
const asset = compilation.assets[file];
if (!asset) {
return;
}
let content: string | Buffer;
// tslint:disable-next-line: no-any
let map: any;
if (this._options.sourceMap && asset.sourceAndMap) {
const sourceAndMap = asset.sourceAndMap({});
content = sourceAndMap.source;
map = sourceAndMap.map;
} else {
content = asset.source();
}
if (typeof content !== 'string') {
content = content.toString();
}
if (content.length === 0) {
return;
}
const cssNanoOptions: cssNano.CssNanoOptions = {
preset: ['default', {
// Disable SVG optimizations, as this can cause optimizations which are not compatible in all browsers.
svgo: false,
// Disable `calc` optimizations, due to several issues. #16910, #16875, #17890
calc: false,
}],
};
const postCssOptions: ProcessOptions = {
from: file,
map: map && { annotation: false, prev: map },
};
const output = await new Promise<Result>((resolve, reject) => {
// the last parameter is not in the typings
// tslint:disable-next-line: no-any
(cssNano.process as any)(content, postCssOptions, cssNanoOptions)
.then(resolve)
.catch(reject);
});
for (const { text } of output.warnings()) {
addWarning(compilation, text);
}
let newSource;
if (output.map) {
newSource = new SourceMapSource(
output.css,
file,
// tslint:disable-next-line: no-any
output.map.toString() as any,
content,
map,
);
} else {
newSource = new RawSource(output.css);
}
compilation.assets[file] = newSource;
});
return Promise.all(actions).then(() => {});
});
}
}