@rushstack/webpack5-module-minifier-plugin 5.3.5 → 5.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/webpack5-module-minifier-plugin.d.ts +32 -0
- package/lib/ModuleMinifierPlugin.d.ts.map +1 -1
- package/lib/ModuleMinifierPlugin.js +17 -4
- package/lib/ModuleMinifierPlugin.js.map +1 -1
- package/lib/ModuleMinifierPlugin.types.d.ts +30 -0
- package/lib/ModuleMinifierPlugin.types.d.ts.map +1 -1
- package/lib/ModuleMinifierPlugin.types.js.map +1 -1
- package/lib/RehydrateAsset.d.ts +1 -1
- package/lib/RehydrateAsset.d.ts.map +1 -1
- package/lib/RehydrateAsset.js +17 -3
- package/lib/RehydrateAsset.js.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -47,6 +47,10 @@ export declare interface IAssetInfo {
|
|
|
47
47
|
* The raw chunk object from Webpack, in case information from it is necessary for reconstruction
|
|
48
48
|
*/
|
|
49
49
|
chunk: Chunk;
|
|
50
|
+
/**
|
|
51
|
+
* Information about the offsets and character lengths for each rendered module in the final asset.
|
|
52
|
+
*/
|
|
53
|
+
renderInfo: Map<string | number, IRenderedModulePosition>;
|
|
50
54
|
/**
|
|
51
55
|
* The type of the asset
|
|
52
56
|
* @example 'javascript'
|
|
@@ -61,6 +65,14 @@ export declare interface IAssetInfo {
|
|
|
61
65
|
*/
|
|
62
66
|
export declare type IAssetMap = Map<string, IAssetInfo>;
|
|
63
67
|
|
|
68
|
+
/**
|
|
69
|
+
* Rendered positional data
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export declare interface IAssetStats {
|
|
73
|
+
positionByModuleId: Map<string | number, IRenderedModulePosition>;
|
|
74
|
+
}
|
|
75
|
+
|
|
64
76
|
/**
|
|
65
77
|
* The set of data remaining to rehydrate in the current compilation
|
|
66
78
|
* @public
|
|
@@ -98,6 +110,10 @@ export declare interface IModuleInfo {
|
|
|
98
110
|
* The raw module object from Webpack, in case information from it is necessary for reconstruction
|
|
99
111
|
*/
|
|
100
112
|
module: Module;
|
|
113
|
+
/**
|
|
114
|
+
* The id of the module, from the chunk graph.
|
|
115
|
+
*/
|
|
116
|
+
id: string | number;
|
|
101
117
|
}
|
|
102
118
|
|
|
103
119
|
/**
|
|
@@ -143,6 +159,7 @@ export declare interface IModuleMinifierPluginOptions {
|
|
|
143
159
|
*/
|
|
144
160
|
export declare interface IModuleMinifierPluginStats {
|
|
145
161
|
metadataByModule: WeakMap<Module, IModuleStats>;
|
|
162
|
+
metadataByAssetFileName: Map<string, IAssetStats>;
|
|
146
163
|
}
|
|
147
164
|
|
|
148
165
|
/**
|
|
@@ -173,6 +190,21 @@ export declare interface IPostProcessFragmentContext {
|
|
|
173
190
|
module: Module | undefined;
|
|
174
191
|
}
|
|
175
192
|
|
|
193
|
+
/**
|
|
194
|
+
* Information about where the module was rendered in the emitted asset.
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
197
|
+
export declare interface IRenderedModulePosition {
|
|
198
|
+
/**
|
|
199
|
+
* The offset from the start of tha asset to the start of the module, in characters.
|
|
200
|
+
*/
|
|
201
|
+
charOffset: number;
|
|
202
|
+
/**
|
|
203
|
+
* The length of the rendered module, in characters.
|
|
204
|
+
*/
|
|
205
|
+
charLength: number;
|
|
206
|
+
}
|
|
207
|
+
|
|
176
208
|
/**
|
|
177
209
|
* Prefix to wrap `function (module, __webpack_exports__, __webpack_require__) { ... }` so that the minifier doesn't delete it.
|
|
178
210
|
* Public because alternate Minifier implementations may wish to know about it.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModuleMinifierPlugin.d.ts","sourceRoot":"","sources":["../src/ModuleMinifierPlugin.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAEV,WAAW,EACX,qBAAqB,EACrB,QAAQ,EAMT,MAAM,SAAS,CAAC;AAUjB,OAAO,KAAK,EAEV,eAAe,EAGhB,MAAM,4BAA4B,CAAC;AAGpC,OAAO,KAAK,EACV,4BAA4B,EAI5B,0BAA0B,EAI1B,0BAA0B,IAAI,0BAA0B,
|
|
1
|
+
{"version":3,"file":"ModuleMinifierPlugin.d.ts","sourceRoot":"","sources":["../src/ModuleMinifierPlugin.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAEV,WAAW,EACX,qBAAqB,EACrB,QAAQ,EAMT,MAAM,SAAS,CAAC;AAUjB,OAAO,KAAK,EAEV,eAAe,EAGhB,MAAM,4BAA4B,CAAC;AAGpC,OAAO,KAAK,EACV,4BAA4B,EAI5B,0BAA0B,EAI1B,0BAA0B,IAAI,0BAA0B,EAEzD,MAAM,8BAA8B,CAAC;AAkFtC;;;GAGG;AACH,qBAAa,oBAAqB,YAAW,qBAAqB;IAChE,SAAgB,KAAK,EAAE,0BAA0B,CAAC;IAC3C,QAAQ,EAAE,eAAe,CAAC;IAEjC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAA0B;IACrD,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAsB;IAEjD,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAkB;gBAE/B,OAAO,EAAE,4BAA4B;WAuB1C,wBAAwB,CAAC,WAAW,EAAE,WAAW,GAAG,0BAA0B,GAAG,SAAS;IAIjG,KAAK,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;CA+XvC"}
|
|
@@ -25,6 +25,7 @@ const TAP_AFTER = {
|
|
|
25
25
|
name: PLUGIN_NAME,
|
|
26
26
|
stage: Constants_1.STAGE_AFTER
|
|
27
27
|
};
|
|
28
|
+
const compilationMetadataMap = new WeakMap();
|
|
28
29
|
function hashCodeFragment(code) {
|
|
29
30
|
return (0, crypto_1.createHash)('sha256').update(code).digest('hex');
|
|
30
31
|
}
|
|
@@ -36,10 +37,18 @@ function hashCodeFragment(code) {
|
|
|
36
37
|
*/
|
|
37
38
|
function defaultRehydrateAssets(dehydratedAssets, compilation) {
|
|
38
39
|
const { assets, modules } = dehydratedAssets;
|
|
40
|
+
const compilationMetadata = compilationMetadataMap.get(compilation);
|
|
41
|
+
if (!compilationMetadata) {
|
|
42
|
+
throw new Error(`Could not get compilation metadata`);
|
|
43
|
+
}
|
|
44
|
+
const { metadataByAssetFileName } = compilationMetadata;
|
|
39
45
|
// Now assets/modules contain fully minified code. Rehydrate.
|
|
40
46
|
for (const [assetName, info] of assets) {
|
|
41
47
|
const banner = info.type === 'javascript' ? (0, GenerateLicenseFileForAsset_1.generateLicenseFileForAsset)(compilation, info) : '';
|
|
42
|
-
const replacementSource = (0, RehydrateAsset_1.rehydrateAsset)(compilation, info, modules, banner);
|
|
48
|
+
const replacementSource = (0, RehydrateAsset_1.rehydrateAsset)(compilation, info, modules, banner, true);
|
|
49
|
+
metadataByAssetFileName.set(assetName, {
|
|
50
|
+
positionByModuleId: info.renderInfo
|
|
51
|
+
});
|
|
43
52
|
compilation.updateAsset(assetName, replacementSource);
|
|
44
53
|
}
|
|
45
54
|
return dehydratedAssets;
|
|
@@ -50,7 +59,6 @@ function isMinificationResultError(result) {
|
|
|
50
59
|
function isLicenseComment(comment) {
|
|
51
60
|
return LICENSE_COMMENT_REGEX.test(comment.value);
|
|
52
61
|
}
|
|
53
|
-
const compilationMetadataMap = new WeakMap();
|
|
54
62
|
/**
|
|
55
63
|
* Webpack plugin that minifies code on a per-module basis rather than per-asset. The actual minification is handled by the input `minifier` object.
|
|
56
64
|
* @public
|
|
@@ -124,8 +132,10 @@ class ModuleMinifierPlugin {
|
|
|
124
132
|
*/
|
|
125
133
|
const minifiedAssets = new Map();
|
|
126
134
|
const metadataByModule = new WeakMap();
|
|
135
|
+
const metadataByAssetFileName = new Map();
|
|
127
136
|
const compilationStatistics = {
|
|
128
|
-
metadataByModule
|
|
137
|
+
metadataByModule,
|
|
138
|
+
metadataByAssetFileName
|
|
129
139
|
};
|
|
130
140
|
compilationMetadataMap.set(compilation, compilationStatistics);
|
|
131
141
|
function getOrCreateMetadata(mod) {
|
|
@@ -250,7 +260,8 @@ class ModuleMinifierPlugin {
|
|
|
250
260
|
metadata.sizeByHash.set(hash, minifiedSize);
|
|
251
261
|
minifiedModules.set(hash, {
|
|
252
262
|
source: cached,
|
|
253
|
-
module: mod
|
|
263
|
+
module: mod,
|
|
264
|
+
id
|
|
254
265
|
});
|
|
255
266
|
}
|
|
256
267
|
catch (err) {
|
|
@@ -323,6 +334,7 @@ class ModuleMinifierPlugin {
|
|
|
323
334
|
source: new CachedSource(withIds),
|
|
324
335
|
chunk,
|
|
325
336
|
fileName: assetName,
|
|
337
|
+
renderInfo: new Map(),
|
|
326
338
|
type: 'javascript'
|
|
327
339
|
});
|
|
328
340
|
}
|
|
@@ -344,6 +356,7 @@ class ModuleMinifierPlugin {
|
|
|
344
356
|
}),
|
|
345
357
|
chunk,
|
|
346
358
|
fileName: assetName,
|
|
359
|
+
renderInfo: new Map(),
|
|
347
360
|
type: 'unknown'
|
|
348
361
|
});
|
|
349
362
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModuleMinifierPlugin.js","sourceRoot":"","sources":["../src/ModuleMinifierPlugin.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;AAE3D,mCAAoC;AAcpC,qCAA2E;AAE3E,2CAMqB;AAOrB,gEAA2D;AAa3D,+EAA4E;AAC5E,qDAAkD;AAElD,0CAA0C;AAC1C,MAAM,WAAW,GAA2B,sBAAsB,CAAC;AAEnE,mGAAmG;AACnG,uCAAuC;AACvC,MAAM,wBAAwB,GAAW,CAAC,CAAC;AAC3C,2CAA2C;AAC3C,oGAAoG;AACpG,MAAM,qBAAqB,GAAW,8BAA8B,CAAC;AAErE,MAAM,UAAU,GAAQ;IACtB,IAAI,EAAE,WAAW;IACjB,KAAK,EAAE,wBAAY;CACpB,CAAC;AACF,MAAM,SAAS,GAAQ;IACrB,IAAI,EAAE,WAAW;IACjB,KAAK,EAAE,uBAAW;CACnB,CAAC;AAYF,SAAS,gBAAgB,CAAC,IAAY;IACpC,OAAO,IAAA,mBAAU,EAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;AACzD,CAAC;AAED;;;;;GAKG;AACH,SAAS,sBAAsB,CAC7B,gBAAmC,EACnC,WAAwB;IAExB,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,gBAAgB,CAAC;IAE7C,6DAA6D;IAC7D,KAAK,MAAM,CAAC,SAAS,EAAE,IAAI,CAAC,IAAI,MAAM,EAAE;QACtC,MAAM,MAAM,GAAW,IAAI,CAAC,IAAI,KAAK,YAAY,CAAC,CAAC,CAAC,IAAA,yDAA2B,EAAC,WAAW,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAExG,MAAM,iBAAiB,GAAmB,IAAA,+BAAc,EAAC,WAAW,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC;QAC7F,WAAW,CAAC,WAAW,CAAC,SAAS,EAAE,iBAAiB,CAAC,CAAC;KACvD;IAED,OAAO,gBAAgB,CAAC;AAC1B,CAAC;AAED,SAAS,yBAAyB,CAChC,MAAiC;IAEjC,OAAO,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;AACxB,CAAC;AAED,SAAS,gBAAgB,CAAC,OAAgB;IACxC,OAAO,qBAAqB,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;AACnD,CAAC;AAED,MAAM,sBAAsB,GAAqD,IAAI,OAAO,EAAE,CAAC;AAE/F;;;GAGG;AACH,MAAa,oBAAoB;IAS/B,YAAmB,OAAqC;QACtD,IAAI,CAAC,KAAK,GAAG;YACX,eAAe,EAAE,IAAI,kCAAwB,CAAC,CAAC,mBAAmB,EAAE,aAAa,CAAC,CAAC;YAEnF,uBAAuB,EAAE,IAAI,2BAAiB,CAAC,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;SACpE,CAAC;QAEF,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,GAAG,OAAO,CAAC;QAExC,IAAI,CAAC,eAAe,GAAG;YACrB,GAAG,OAAO;YACV,QAAQ,EAAE,SAAS;YACnB,QAAQ,EAAE,wBAAwB;SACnC,CAAC;QAEF,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;QAErB,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,GAAG,CAAC,WAAW,EAAE,sBAAsB,CAAC,CAAC;QACpE,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QAEzB,IAAI,CAAC,UAAU,GAAG,SAAS,CAAC;IAC9B,CAAC;IAEM,MAAM,CAAC,wBAAwB,CAAC,WAAwB;QAC7D,OAAO,sBAAsB,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACjD,CAAC;IAEM,KAAK,CAAC,QAAkB;QAC7B,KAAK,MAAM,QAAQ,IAAI,IAAI,CAAC,UAAU,EAAE;YACtC,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;SAC1B;QAED,MAAM,EACJ,OAAO,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,EAC1B,OAAO,EACR,GAAG,QAAQ,CAAC;QAEb,OAAO,CAAC,QAAQ,CAAC,kBAAkB,GAAG,+BAAa,CAAC;QAEpD,MAAM,EAAE,YAAY,EAAE,YAAY,EAAE,SAAS,EAAE,aAAa,EAAE,eAAe,EAAE,GAAG,OAAO,CAAC,OAAO,CAAC;QAClG,uFAAuF;QACvF,MAAM,aAAa,GACjB,OAAO,IAAI,CAAC,UAAU,KAAK,SAAS;YAClC,CAAC,CAAC,IAAI,CAAC,UAAU;YACjB,CAAC,CAAC,OAAO,OAAO,KAAK,QAAQ;gBAC7B,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAC;gBAChC,CAAC,CAAC,IAAI,KAAK,YAAY,IAAI,OAAO,KAAK,KAAK,CAAC;QAEjD,IAAI,CAAC,eAAe,CAAC,SAAS,GAAG,aAAa,CAAC;QAC/C,MAAM,YAAY,GAAW,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,eAAe,CAAC,EAAE,OAAO,CAAC,CAAC;QAExF,QAAQ,CAAC,KAAK,CAAC,eAAe,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC,WAAW,EAAE,eAAe,EAAE,EAAE;YAC/E,MAAM,EAAE,mBAAmB,EAAE,GAAG,eAAe,CAAC;YAEhD,SAAS,oBAAoB,CAAC,MAAmC;gBAC/D,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC,OAAgB,EAAE,QAAmB,EAAE,EAAE;oBAC9E,MAAM,gBAAgB,GAAc,QAAQ,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC;oBACtE,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;wBACvB,MAAM,MAAM,GAAW,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC;wBAC3C,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE;4BACvB,MAAM,CAAC,WAAW,GAAG;gCACnB,QAAQ,EAAE,gBAAgB;6BAC3B,CAAC;yBACH;6BAAM;4BACJ,MAAM,CAAC,WAA4B,CAAC,QAAQ,GAAG,gBAAgB,CAAC;yBAClE;qBACF;gBACH,CAAC,CAAC,CAAC;YACL,CAAC;YAED,mBAAmB,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC,GAAG,CAAC,WAAW,EAAE,oBAAoB,CAAC,CAAC;YAC/F,mBAAmB,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC,GAAG,CAAC,WAAW,EAAE,oBAAoB,CAAC,CAAC;YAClG,mBAAmB,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC,GAAG,CAAC,WAAW,EAAE,oBAAoB,CAAC,CAAC;YAE9F;;eAEG;YACH,MAAM,gBAAgB,GAAyB,IAAI,GAAG,EAAE,CAAC;YAEzD;;eAEG;YACH,MAAM,eAAe,GAAe,IAAI,GAAG,EAAE,CAAC;YAE9C;;eAEG;YACH,MAAM,cAAc,GAAc,IAAI,GAAG,EAAE,CAAC;YAE5C,MAAM,gBAAgB,GAAkC,IAAI,OAAO,EAAE,CAAC;YACtE,MAAM,qBAAqB,GAA+B;gBACxD,gBAAgB;aACjB,CAAC;YACF,sBAAsB,CAAC,GAAG,CAAC,WAAW,EAAE,qBAAqB,CAAC,CAAC;YAC/D,SAAS,mBAAmB,CAAC,GAAW;gBACtC,IAAI,WAAW,GAA6B,gBAAgB,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;gBACtE,IAAI,CAAC,WAAW,EAAE;oBAChB,WAAW,GAAG;wBACZ,WAAW,EAAE,IAAI,GAAG,EAAE;wBACtB,UAAU,EAAE,IAAI,GAAG,EAAE;qBACtB,CAAC;oBACF,gBAAgB,CAAC,GAAG,CAAC,GAAG,EAAE,WAAW,CAAC,CAAC;iBACxC;gBACD,OAAO,WAAW,CAAC;YACrB,CAAC;YAED,IAAI,2BAA2B,GAAW,CAAC,CAAC;YAC5C;;eAEG;YACH,IAAI,iBAAiB,GAAY,KAAK,CAAC;YAEvC,IAAI,oBAAgC,CAAC;YAErC,MAAM,eAAe,GAGQ,CAAC,IAA2B,EAAE,OAAoC,EAAE,EAAE,CACjG,IAAI,CAAC,KAAK,CAAC,uBAAuB,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;YAEzD;;eAEG;YACH,SAAS,cAAc;gBACrB,IAAI,EAAE,2BAA2B,KAAK,CAAC,IAAI,iBAAiB,EAAE;oBAC5D,oBAAoB,EAAE,CAAC;iBACxB;YACH,CAAC;YAED,MAAM,EAAE,QAAQ,EAAE,GAAG,IAAI,CAAC;YAE1B,IAAI,kBAAmD,CAAC;YAExD,0CAA0C;YAC1C,sDAAsD;YACtD,MAAM,eAAe,GAAG,OAAO,CAAC,UAAU,CAAC,uBAAuB,CAAC,mBAAmB,CAAC,WAAW,CAAC,CAAC;YAEpG;;;;;;;;eAQG;YACH,IAAI,UAA8B,CAAC;YACnC,MAAM,WAAW,GAA+C,IAAI,OAAO,EAAE,CAAC;YAC9E,eAAe,CAAC,mBAAmB,CAAC,GAAG,CAAC,SAAS,EAAE,CAAC,MAAM,EAAE,EAAE;gBAC5D,wDAAwD;gBACxD,UAAU,GAAG,SAAS,CAAC;gBACvB,OAAO,MAAM,CAAC;YAChB,CAAC,CAAC,CAAC;YACH,eAAe,CAAC,qBAAqB,CAAC,GAAG,CAAC,SAAS,EAAE,CAAC,MAAM,EAAE,GAAG,EAAE,EAAE;gBACnE,kFAAkF;gBAClF,kFAAkF;gBAClF,IAAI,GAAG,CAAC,OAAO,KAAK,IAAI,IAAI,CAAE,GAAsB,CAAC,YAAY,EAAE;oBACjE,UAAU,GAAG,GAAG,CAAC;iBAClB;gBACD,OAAO,MAAM,CAAC;YAChB,CAAC,CAAC,CAAC;YACH,eAAe,CAAC,mBAAmB,CAAC,GAAG,CACrC,SAAS;YACT;;eAEG;YACH,SAAS,YAAY,CACnB,MAAsB,EACtB,GAAW,EACX,kBAAoC;gBAEpC,IAAI,UAAU,KAAK,GAAG,EAAE;oBACtB,iEAAiE;oBACjE,OAAO,MAAM,CAAC;iBACf;gBAED,MAAM,EAAE,GAAoB,WAAW,CAAC,UAAU,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;gBAEpE,MAAM,QAAQ,GAAiB,mBAAmB,CAAC,GAAG,CAAC,CAAC;gBACxD,MAAM,YAAY,GAAkC,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;gBAC5E,IAAI,YAAY,EAAE;oBAChB,QAAQ,CAAC,WAAW,CAAC,GAAG,CAAC,kBAAkB,CAAC,KAAK,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;oBACtE,OAAO,YAAY,CAAC,MAAM,CAAC;iBAC5B;gBAED,0GAA0G;gBAC1G,MAAM,OAAO,GAAmB,IAAI,YAAY,CAC9C,iCAAqB,GAAG,IAAI,EAC5B,MAAM,EACN,IAAI,GAAG,iCAAqB,CAC7B,CAAC;gBAEF,MAAM,UAAU,GAAW,aAAa,EAAE,EAAE,CAAC;gBAE7C,MAAM,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,EAAE,GAAG,aAAa;oBACnD,CAAC,CAAC,OAAO,CAAC,YAAY,EAAE;oBACxB,CAAC,CAAC;wBACE,MAAM,EAAE,OAAO,CAAC,MAAM,EAAE;wBACxB,GAAG,EAAE,SAAS;qBACf,CAAC;gBAEN,MAAM,WAAW,GAAW,cAAc,CAAC,QAAQ,EAAE,CAAC;gBACtD,MAAM,IAAI,GAAW,gBAAgB,CAAC,WAAW,CAAC,CAAC;gBACnD,QAAQ,CAAC,WAAW,CAAC,GAAG,CAAC,kBAAkB,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;gBACzD,IAAI,CAAC,gBAAgB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC/B,gBAAgB,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;oBAE3B,EAAE,2BAA2B,CAAC;oBAE9B,QAAQ,CAAC,MAAM,CACb;wBACE,IAAI;wBACJ,IAAI,EAAE,WAAW;wBACjB,UAAU,EAAE,aAAa,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS;wBAClD,SAAS,EAAE,SAAS;qBACrB,EACD,CAAC,MAAiC,EAAE,EAAE;wBACpC,IAAI,yBAAyB,CAAC,MAAM,CAAC,EAAE;4BACrC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,KAAqB,CAAC,CAAC;yBACvD;6BAAM;4BACL,IAAI;gCACF,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,GAAG,EAAE,WAAW,EAAE,GAAG,MAAM,CAAC;gCAEpD,MAAM,SAAS,GAAmB,aAAa;oCAC7C,CAAC,CAAC,IAAI,eAAe,CACjB,QAAQ,EAAE,OAAO;oCACjB,UAAU,EAAE,OAAO;oCACnB,WAAY,EAAE,kBAAkB;oCAChC,WAAW,EAAE,+BAA+B;oCAC5C,GAAI,EAAE,mCAAmC;oCACzC,IAAI,CAAC,yBAAyB;qCAC/B;oCACH,CAAC,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,CAAC;gCAE5B,MAAM,SAAS,GAA0B,IAAI,aAAa,CAAC,SAAS,CAAC,CAAC;gCACtE,MAAM,GAAG,GAAW,QAAQ,CAAC,MAAM,CAAC;gCAEpC,wDAAwD;gCACxD,SAAS,CAAC,OAAO,CAAC,CAAC,EAAE,iCAAqB,CAAC,MAAM,GAAG,CAAC,EAAE,EAAE,CAAC,CAAC;gCAC3D,SAAS,CAAC,OAAO,CAAC,GAAG,GAAG,iCAAqB,CAAC,MAAM,EAAE,GAAG,GAAG,CAAC,EAAE,EAAE,CAAC,CAAC;gCAEnE,MAAM,OAAO,GAAmB,eAAe,CAAC,SAAS,EAAE;oCACzD,WAAW;oCACX,MAAM,EAAE,GAAG;oCACX,WAAW,EAAE,GAAG,CAAC,UAAU,EAAE;iCAC9B,CAAC,CAAC;gCACH,MAAM,MAAM,GAAyB,IAAI,YAAY,CAAC,OAAO,CAAC,CAAC;gCAE/D,MAAM,YAAY,GAAW,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,OAAO,CAAC,CAAC;gCACzE,QAAQ,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC;gCAE5C,eAAe,CAAC,GAAG,CAAC,IAAI,EAAE;oCACxB,MAAM,EAAE,MAAM;oCACd,MAAM,EAAE,GAAG;iCACZ,CAAC,CAAC;6BACJ;4BAAC,OAAO,GAAG,EAAE;gCACZ,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;6BAC9B;yBACF;wBAED,cAAc,EAAE,CAAC;oBACnB,CAAC,CACF,CAAC;iBACH;gBAED,MAAM,MAAM,GAAmB,IAAI,SAAS,CAAC,GAAG,8BAAkB,GAAG,IAAI,EAAE,CAAC,CAAC;gBAC7E,WAAW,CAAC,GAAG,CAAC,MAAM,EAAE;oBACtB,IAAI;oBACJ,MAAM,EAAE,MAAM;iBACf,CAAC,CAAC;gBAEH,wCAAwC;gBACxC,OAAO,MAAM,CAAC;YAChB,CAAC,CACF,CAAC;YAEF,0FAA0F;YAC1F,WAAW,CAAC,KAAK,CAAC,oBAAoB,CAAC,UAAU,CAAC,WAAW,EAAE,KAAK,IAAI,EAAE;gBACxE,kBAAkB,GAAG,MAAM,QAAQ,CAAC,OAAO,EAAE,CAAC;gBAE9C,gBAAgB,CAAC,KAAK,EAAE,CAAC;YAC3B,CAAC,CAAC,CAAC;YAEH,MAAM,SAAS,GAAW,mBAAmB,CAAC;YAE9C,8EAA8E;YAC9E,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,UAAU,CAAC,UAAU,EAAE,KAAK,IAAmB,EAAE;gBAC/E,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,GAAG,WAAW,CAAC;gBAE3C,2CAA2C;gBAC3C,KAAK,MAAM,KAAK,IAAI,MAAM,EAAE;oBAC1B,MAAM,eAAe,GACnB,UAAU,CAAC,mCAAmC,CAAC,KAAK,EAAE,YAAY,CAAC,CAAC;oBACtE,IAAI,CAAC,eAAe,EAAE;wBACpB,iDAAiD;wBACjD,SAAS;qBACV;oBAED,KAAK,MAAM,SAAS,IAAI,KAAK,CAAC,KAAK,EAAE;wBACnC,MAAM,KAAK,GAAmB,WAAW,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;wBAE5D,iCAAiC;wBACjC,IAAI,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE;4BAC7B,EAAE,2BAA2B,CAAC;4BAE9B,MAAM,OAAO,GAAW,KAAK,CAAC,MAAM,EAAY,CAAC;4BACjD,MAAM,UAAU,GAAW,YAAY,SAAS,EAAE,CAAC;4BAEnD,MAAM,IAAI,GAAW,gBAAgB,CAAC,OAAO,CAAC,CAAC;4BAE/C,QAAQ,CAAC,MAAM,CACb;gCACE,IAAI;gCACJ,IAAI,EAAE,OAAO;gCACb,UAAU,EAAE,aAAa,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS;gCAClD,SAAS,EAAE,SAAS;6BACrB,EACD,CAAC,MAAiC,EAAE,EAAE;gCACpC,IAAI,yBAAyB,CAAC,MAAM,CAAC,EAAE;oCACrC,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,KAAqB,CAAC,CAAC;oCACtD,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;iCAC7B;qCAAM;oCACL,IAAI;wCACF,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,GAAG,EAAE,WAAW,EAAE,GAAG,MAAM,CAAC;wCAEpD,MAAM,SAAS,GAAmB,aAAa;4CAC7C,CAAC,CAAC,IAAI,eAAe,CACjB,QAAQ,EAAE,OAAO;4CACjB,UAAU,EAAE,OAAO;4CACnB,WAAY,EAAE,kBAAkB;4CAChC,OAAO,EAAE,+BAA+B;4CACxC,SAAS,EAAE,mCAAmC;4CAC9C,IAAI,CAAC,yBAAyB;6CAC/B;4CACH,CAAC,CAAC,IAAI,SAAS,CAAC,QAAQ,CAAC,CAAC;wCAE5B,MAAM,OAAO,GAAmB,eAAe,CAAC,IAAI,aAAa,CAAC,SAAS,CAAC,EAAE;4CAC5E,WAAW;4CACX,MAAM,EAAE,SAAS;4CACjB,WAAW,EAAE,SAAS;yCACvB,CAAC,CAAC;wCAEH,cAAc,CAAC,GAAG,CAAC,SAAS,EAAE;4CAC5B,MAAM,EAAE,IAAI,YAAY,CAAC,OAAO,CAAC;4CACjC,KAAK;4CACL,QAAQ,EAAE,SAAS;4CACnB,IAAI,EAAE,YAAY;yCACnB,CAAC,CAAC;qCACJ;oCAAC,OAAO,GAAG,EAAE;wCACZ,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;qCAC9B;iCACF;gCAED,cAAc,EAAE,CAAC;4BACnB,CAAC,CACF,CAAC;yBACH;6BAAM;4BACL,sJAAsJ;4BACtJ,cAAc,CAAC,GAAG,CAAC,SAAS,EAAE;gCAC5B,4BAA4B;gCAC5B,MAAM,EAAE,eAAe,CAAC,IAAI,aAAa,CAAC,KAAK,CAAC,EAAE;oCAChD,WAAW;oCACX,MAAM,EAAE,SAAS;oCACjB,WAAW,EAAE,SAAS;iCACvB,CAAC;gCACF,KAAK;gCACL,QAAQ,EAAE,SAAS;gCACnB,IAAI,EAAE,SAAS;6BAChB,CAAC,CAAC;yBACJ;qBACF;iBACF;gBAED,iBAAiB,GAAG,IAAI,CAAC;gBAEzB,IAAI,2BAA2B,EAAE;oBAC/B,MAAM,IAAI,OAAO,CAAO,CAAC,OAAO,EAAE,EAAE;wBAClC,oBAAoB,GAAG,OAAO,CAAC;oBACjC,CAAC,CAAC,CAAC;iBACJ;gBAED,sCAAsC;gBACtC,MAAM,CAAA,kBAAkB,aAAlB,kBAAkB,uBAAlB,kBAAkB,CAAE,UAAU,EAAE,CAAA,CAAC;gBAEvC,4EAA4E;gBAC5E,MAAM,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,OAAO,CACtC;oBACE,MAAM,EAAE,cAAc;oBACtB,OAAO,EAAE,eAAe;iBACzB,EACD,WAAW,CACZ,CAAC;YACJ,CAAC,CAAC,CAAC;YAEH,gEAAgE;YAChE,eAAe,CAAC,SAAS,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC,KAAK,EAAE,IAAI,EAAQ,EAAE;gBAC/D,yBAAyB;gBACzB,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;gBAC1B,mCAAmC;gBACnC,IAAI,kBAAkB,EAAE;oBACtB,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,UAAU,EAAE,MAAM,CAAC,CAAC;iBACpD;YACH,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AA9ZD,oDA8ZC","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport { createHash } from 'crypto';\n\nimport type { Comment } from 'estree';\nimport type {\n Module,\n Compilation,\n WebpackPluginInstance,\n Compiler,\n javascript,\n WebpackError,\n ExternalModule,\n sources,\n Chunk\n} from 'webpack';\nimport { AsyncSeriesWaterfallHook, SyncWaterfallHook, Tap } from 'tapable';\n\nimport {\n CHUNK_MODULE_TOKEN,\n MODULE_WRAPPER_PREFIX,\n MODULE_WRAPPER_SUFFIX,\n STAGE_BEFORE,\n STAGE_AFTER\n} from './Constants';\nimport type {\n IMinifierConnection,\n IModuleMinifier,\n IModuleMinificationResult,\n IModuleMinificationErrorResult\n} from '@rushstack/module-minifier';\nimport { getIdentifier } from '@rushstack/module-minifier';\n\nimport type {\n IModuleMinifierPluginOptions,\n IModuleMap,\n IAssetMap,\n IFactoryMeta,\n IModuleMinifierPluginHooks,\n IPostProcessFragmentContext,\n IDehydratedAssets,\n IModuleStats,\n IModuleMinifierPluginStats as IModuleMinifierPluginStats\n} from './ModuleMinifierPlugin.types';\nimport { generateLicenseFileForAsset } from './GenerateLicenseFileForAsset';\nimport { rehydrateAsset } from './RehydrateAsset';\n\n// The name of the plugin, for use in taps\nconst PLUGIN_NAME: 'ModuleMinifierPlugin' = 'ModuleMinifierPlugin';\n\n// Monotonically increasing identifier to be incremented any time the code generation logic changes\n// Will be applied to the webpack hash.\nconst CODE_GENERATION_REVISION: number = 1;\n// Match behavior of terser's \"some\" option\n// https://github.com/terser/terser/blob/d3d924fa9e4c57bbe286b811c6068bcc7026e902/lib/output.js#L175\nconst LICENSE_COMMENT_REGEX: RegExp = /@preserve|@lic|@cc_on|^\\**!/i;\n\nconst TAP_BEFORE: Tap = {\n name: PLUGIN_NAME,\n stage: STAGE_BEFORE\n};\nconst TAP_AFTER: Tap = {\n name: PLUGIN_NAME,\n stage: STAGE_AFTER\n};\n\ninterface IOptionsForHash extends Omit<IModuleMinifierPluginOptions, 'minifier'> {\n revision: number;\n minifier: undefined;\n}\n\ninterface ISourceCacheEntry {\n source: sources.Source;\n hash: string;\n}\n\nfunction hashCodeFragment(code: string): string {\n return createHash('sha256').update(code).digest('hex');\n}\n\n/**\n * Base implementation of asset rehydration\n *\n * @param dehydratedAssets The dehydrated assets\n * @param compilation The webpack compilation\n */\nfunction defaultRehydrateAssets(\n dehydratedAssets: IDehydratedAssets,\n compilation: Compilation\n): IDehydratedAssets {\n const { assets, modules } = dehydratedAssets;\n\n // Now assets/modules contain fully minified code. Rehydrate.\n for (const [assetName, info] of assets) {\n const banner: string = info.type === 'javascript' ? generateLicenseFileForAsset(compilation, info) : '';\n\n const replacementSource: sources.Source = rehydrateAsset(compilation, info, modules, banner);\n compilation.updateAsset(assetName, replacementSource);\n }\n\n return dehydratedAssets;\n}\n\nfunction isMinificationResultError(\n result: IModuleMinificationResult\n): result is IModuleMinificationErrorResult {\n return !!result.error;\n}\n\nfunction isLicenseComment(comment: Comment): boolean {\n return LICENSE_COMMENT_REGEX.test(comment.value);\n}\n\nconst compilationMetadataMap: WeakMap<Compilation, IModuleMinifierPluginStats> = new WeakMap();\n\n/**\n * Webpack plugin that minifies code on a per-module basis rather than per-asset. The actual minification is handled by the input `minifier` object.\n * @public\n */\nexport class ModuleMinifierPlugin implements WebpackPluginInstance {\n public readonly hooks: IModuleMinifierPluginHooks;\n public minifier: IModuleMinifier;\n\n private readonly _enhancers: WebpackPluginInstance[];\n private readonly _sourceMap: boolean | undefined;\n\n private readonly _optionsForHash: IOptionsForHash;\n\n public constructor(options: IModuleMinifierPluginOptions) {\n this.hooks = {\n rehydrateAssets: new AsyncSeriesWaterfallHook(['dehydratedContent', 'compilation']),\n\n postProcessCodeFragment: new SyncWaterfallHook(['code', 'context'])\n };\n\n const { minifier, sourceMap } = options;\n\n this._optionsForHash = {\n ...options,\n minifier: undefined,\n revision: CODE_GENERATION_REVISION\n };\n\n this._enhancers = [];\n\n this.hooks.rehydrateAssets.tap(PLUGIN_NAME, defaultRehydrateAssets);\n this.minifier = minifier;\n\n this._sourceMap = sourceMap;\n }\n\n public static getCompilationStatistics(compilation: Compilation): IModuleMinifierPluginStats | undefined {\n return compilationMetadataMap.get(compilation);\n }\n\n public apply(compiler: Compiler): void {\n for (const enhancer of this._enhancers) {\n enhancer.apply(compiler);\n }\n\n const {\n options: { devtool, mode },\n webpack\n } = compiler;\n\n webpack.Template.numberToIdentifier = getIdentifier;\n\n const { CachedSource, ConcatSource, RawSource, ReplaceSource, SourceMapSource } = webpack.sources;\n // The explicit setting is preferred due to accuracy, but try to guess based on devtool\n const useSourceMaps: boolean =\n typeof this._sourceMap === 'boolean'\n ? this._sourceMap\n : typeof devtool === 'string'\n ? devtool.endsWith('source-map')\n : mode === 'production' && devtool !== false;\n\n this._optionsForHash.sourceMap = useSourceMaps;\n const binaryConfig: Buffer = Buffer.from(JSON.stringify(this._optionsForHash), 'utf-8');\n\n compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation, compilationData) => {\n const { normalModuleFactory } = compilationData;\n\n function addCommentExtraction(parser: javascript.JavascriptParser): void {\n parser.hooks.program.tap(PLUGIN_NAME, (program: unknown, comments: Comment[]) => {\n const relevantComments: Comment[] = comments.filter(isLicenseComment);\n if (comments.length > 0) {\n const module: Module = parser.state.module;\n if (!module.factoryMeta) {\n module.factoryMeta = {\n comments: relevantComments\n };\n } else {\n (module.factoryMeta as IFactoryMeta).comments = relevantComments;\n }\n }\n });\n }\n\n normalModuleFactory.hooks.parser.for('javascript/auto').tap(PLUGIN_NAME, addCommentExtraction);\n normalModuleFactory.hooks.parser.for('javascript/dynamic').tap(PLUGIN_NAME, addCommentExtraction);\n normalModuleFactory.hooks.parser.for('javascript/esm').tap(PLUGIN_NAME, addCommentExtraction);\n\n /**\n * Set of local module ids that have been processed.\n */\n const submittedModules: Set<string | number> = new Set();\n\n /**\n * The text and comments of all minified modules.\n */\n const minifiedModules: IModuleMap = new Map();\n\n /**\n * The text and comments of all minified chunks. Most of these are trivial, but the runtime chunk is a bit larger.\n */\n const minifiedAssets: IAssetMap = new Map();\n\n const metadataByModule: WeakMap<Module, IModuleStats> = new WeakMap();\n const compilationStatistics: IModuleMinifierPluginStats = {\n metadataByModule\n };\n compilationMetadataMap.set(compilation, compilationStatistics);\n function getOrCreateMetadata(mod: Module): IModuleStats {\n let moduleStats: IModuleStats | undefined = metadataByModule.get(mod);\n if (!moduleStats) {\n moduleStats = {\n hashByChunk: new Map(),\n sizeByHash: new Map()\n };\n metadataByModule.set(mod, moduleStats);\n }\n return moduleStats;\n }\n\n let pendingMinificationRequests: number = 0;\n /**\n * Indicates that all files have been sent to the minifier and therefore that when pending hits 0, assets can be rehydrated.\n */\n let allRequestsIssued: boolean = false;\n\n let resolveMinifyPromise: () => void;\n\n const postProcessCode: (\n code: sources.ReplaceSource,\n context: IPostProcessFragmentContext\n ) => sources.ReplaceSource = (code: sources.ReplaceSource, context: IPostProcessFragmentContext) =>\n this.hooks.postProcessCodeFragment.call(code, context);\n\n /**\n * Callback to invoke when a file has finished minifying.\n */\n function onFileMinified(): void {\n if (--pendingMinificationRequests === 0 && allRequestsIssued) {\n resolveMinifyPromise();\n }\n }\n\n const { minifier } = this;\n\n let minifierConnection: IMinifierConnection | undefined;\n\n // Typings for this object are not exposed\n // eslint-disable-next-line @typescript-eslint/typedef\n const javascriptHooks = webpack.javascript.JavascriptModulesPlugin.getCompilationHooks(compilation);\n\n /**\n * The minifier needs to know if the module was wrapped in a factory function, because\n * function (module, exports, require) { // <implementation> }\n * minifies to nothing. Unfortunately we can't tell by inspection if the output was wrapped or not.\n * However, the JavaScriptModulesPlugin invokes three hooks in order when rendering a module:\n * 1) renderModuleContent - Invoked for every module.\n * 2) renderModuleContainer - Invoked when wrapping a module in a factory.\n * 3) renderModulePackage - Invoked for every module as the last hook.\n */\n let nextModule: Module | undefined;\n const sourceCache: WeakMap<sources.Source, ISourceCacheEntry> = new WeakMap();\n javascriptHooks.renderModuleContent.tap(TAP_AFTER, (source) => {\n // Clear the identification state of the current module.\n nextModule = undefined;\n return source;\n });\n javascriptHooks.renderModuleContainer.tap(TAP_AFTER, (source, mod) => {\n // Module is being wrapped in a factory, so it is safe for per-module minification\n // Leave external modules in-place to avoid needing special handling for externals\n if (mod.context !== null || !(mod as ExternalModule).externalType) {\n nextModule = mod;\n }\n return source;\n });\n javascriptHooks.renderModulePackage.tap(\n TAP_AFTER,\n /**\n * Extracts the code for the module and sends it to be minified.\n */\n function minifyModule(\n source: sources.Source,\n mod: Module,\n chunkRenderContext: { chunk: Chunk }\n ): sources.Source {\n if (nextModule !== mod) {\n // This module is being inlined. Abandon per-module minification.\n return source;\n }\n\n const id: string | number = compilation.chunkGraph.getModuleId(mod);\n\n const metadata: IModuleStats = getOrCreateMetadata(mod);\n const cachedResult: ISourceCacheEntry | undefined = sourceCache.get(source);\n if (cachedResult) {\n metadata.hashByChunk.set(chunkRenderContext.chunk, cachedResult.hash);\n return cachedResult.source;\n }\n\n // If this module is wrapped in a factory, need to add boilerplate so that the minifier keeps the function\n const wrapped: sources.Source = new ConcatSource(\n MODULE_WRAPPER_PREFIX + '\\n',\n source,\n '\\n' + MODULE_WRAPPER_SUFFIX\n );\n\n const nameForMap: string = `(modules)/${id}`;\n\n const { source: wrappedCodeRaw, map } = useSourceMaps\n ? wrapped.sourceAndMap()\n : {\n source: wrapped.source(),\n map: undefined\n };\n\n const wrappedCode: string = wrappedCodeRaw.toString();\n const hash: string = hashCodeFragment(wrappedCode);\n metadata.hashByChunk.set(chunkRenderContext.chunk, hash);\n if (!submittedModules.has(hash)) {\n submittedModules.add(hash);\n\n ++pendingMinificationRequests;\n\n minifier.minify(\n {\n hash,\n code: wrappedCode,\n nameForMap: useSourceMaps ? nameForMap : undefined,\n externals: undefined\n },\n (result: IModuleMinificationResult) => {\n if (isMinificationResultError(result)) {\n compilation.errors.push(result.error as WebpackError);\n } else {\n try {\n const { code: minified, map: minifierMap } = result;\n\n const rawOutput: sources.Source = useSourceMaps\n ? new SourceMapSource(\n minified, // Code\n nameForMap, // File\n minifierMap!, // Base source map\n wrappedCode, // Source from before transform\n map!, // Source Map from before transform\n true // Remove original source\n )\n : new RawSource(minified);\n\n const unwrapped: sources.ReplaceSource = new ReplaceSource(rawOutput);\n const len: number = minified.length;\n\n // Trim off the boilerplate used to preserve the factory\n unwrapped.replace(0, MODULE_WRAPPER_PREFIX.length - 1, '');\n unwrapped.replace(len - MODULE_WRAPPER_SUFFIX.length, len - 1, '');\n\n const withIds: sources.Source = postProcessCode(unwrapped, {\n compilation,\n module: mod,\n loggingName: mod.identifier()\n });\n const cached: sources.CachedSource = new CachedSource(withIds);\n\n const minifiedSize: number = Buffer.byteLength(cached.source(), 'utf-8');\n metadata.sizeByHash.set(hash, minifiedSize);\n\n minifiedModules.set(hash, {\n source: cached,\n module: mod\n });\n } catch (err) {\n compilation.errors.push(err);\n }\n }\n\n onFileMinified();\n }\n );\n }\n\n const result: sources.Source = new RawSource(`${CHUNK_MODULE_TOKEN}${hash}`);\n sourceCache.set(source, {\n hash,\n source: result\n });\n\n // Return an expression to replace later\n return result;\n }\n );\n\n // The optimizeChunkModules hook is the last async hook that occurs before chunk rendering\n compilation.hooks.optimizeChunkModules.tapPromise(PLUGIN_NAME, async () => {\n minifierConnection = await minifier.connect();\n\n submittedModules.clear();\n });\n\n const isJSAsset: RegExp = /\\.[cm]?js(\\?.+)?$/;\n\n // This should happen before any other tasks that operate during processAssets\n compilation.hooks.processAssets.tapPromise(TAP_BEFORE, async (): Promise<void> => {\n const { chunkGraph, chunks } = compilation;\n\n // Still need to minify the rendered assets\n for (const chunk of chunks) {\n const allChunkModules: Iterable<Module> | undefined =\n chunkGraph.getChunkModulesIterableBySourceType(chunk, 'javascript');\n if (!allChunkModules) {\n // This chunk does not contain javascript modules\n continue;\n }\n\n for (const assetName of chunk.files) {\n const asset: sources.Source = compilation.assets[assetName];\n\n // Verify that this is a JS asset\n if (isJSAsset.test(assetName)) {\n ++pendingMinificationRequests;\n\n const rawCode: string = asset.source() as string;\n const nameForMap: string = `(chunks)/${assetName}`;\n\n const hash: string = hashCodeFragment(rawCode);\n\n minifier.minify(\n {\n hash,\n code: rawCode,\n nameForMap: useSourceMaps ? nameForMap : undefined,\n externals: undefined\n },\n (result: IModuleMinificationResult) => {\n if (isMinificationResultError(result)) {\n compilation.errors.push(result.error as WebpackError);\n console.error(result.error);\n } else {\n try {\n const { code: minified, map: minifierMap } = result;\n\n const rawOutput: sources.Source = useSourceMaps\n ? new SourceMapSource(\n minified, // Code\n nameForMap, // File\n minifierMap!, // Base source map\n rawCode, // Source from before transform\n undefined, // Source Map from before transform\n true // Remove original source\n )\n : new RawSource(minified);\n\n const withIds: sources.Source = postProcessCode(new ReplaceSource(rawOutput), {\n compilation,\n module: undefined,\n loggingName: assetName\n });\n\n minifiedAssets.set(assetName, {\n source: new CachedSource(withIds),\n chunk,\n fileName: assetName,\n type: 'javascript'\n });\n } catch (err) {\n compilation.errors.push(err);\n }\n }\n\n onFileMinified();\n }\n );\n } else {\n // This isn't a JS asset. Don't try to minify the asset wrapper, though if it contains modules, those might still get replaced with minified versions.\n minifiedAssets.set(assetName, {\n // Still need to restore ids\n source: postProcessCode(new ReplaceSource(asset), {\n compilation,\n module: undefined,\n loggingName: assetName\n }),\n chunk,\n fileName: assetName,\n type: 'unknown'\n });\n }\n }\n }\n\n allRequestsIssued = true;\n\n if (pendingMinificationRequests) {\n await new Promise<void>((resolve) => {\n resolveMinifyPromise = resolve;\n });\n }\n\n // Handle any error from the minifier.\n await minifierConnection?.disconnect();\n\n // All assets and modules have been minified, hand them off to be rehydrated\n await this.hooks.rehydrateAssets.promise(\n {\n assets: minifiedAssets,\n modules: minifiedModules\n },\n compilation\n );\n });\n\n // Need to update chunk hashes with information from this plugin\n javascriptHooks.chunkHash.tap(PLUGIN_NAME, (chunk, hash): void => {\n // Apply the options hash\n hash.update(binaryConfig);\n // Apply the hash from the minifier\n if (minifierConnection) {\n hash.update(minifierConnection.configHash, 'utf8');\n }\n });\n });\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"ModuleMinifierPlugin.js","sourceRoot":"","sources":["../src/ModuleMinifierPlugin.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport { createHash } from 'crypto';\n\nimport type { Comment } from 'estree';\nimport type {\n Module,\n Compilation,\n WebpackPluginInstance,\n Compiler,\n javascript,\n WebpackError,\n ExternalModule,\n sources,\n Chunk\n} from 'webpack';\nimport { AsyncSeriesWaterfallHook, SyncWaterfallHook, Tap } from 'tapable';\n\nimport {\n CHUNK_MODULE_TOKEN,\n MODULE_WRAPPER_PREFIX,\n MODULE_WRAPPER_SUFFIX,\n STAGE_BEFORE,\n STAGE_AFTER\n} from './Constants';\nimport type {\n IMinifierConnection,\n IModuleMinifier,\n IModuleMinificationResult,\n IModuleMinificationErrorResult\n} from '@rushstack/module-minifier';\nimport { getIdentifier } from '@rushstack/module-minifier';\n\nimport type {\n IModuleMinifierPluginOptions,\n IModuleMap,\n IAssetMap,\n IFactoryMeta,\n IModuleMinifierPluginHooks,\n IPostProcessFragmentContext,\n IDehydratedAssets,\n IModuleStats,\n IModuleMinifierPluginStats as IModuleMinifierPluginStats,\n IAssetStats\n} from './ModuleMinifierPlugin.types';\nimport { generateLicenseFileForAsset } from './GenerateLicenseFileForAsset';\nimport { rehydrateAsset } from './RehydrateAsset';\n\n// The name of the plugin, for use in taps\nconst PLUGIN_NAME: 'ModuleMinifierPlugin' = 'ModuleMinifierPlugin';\n\n// Monotonically increasing identifier to be incremented any time the code generation logic changes\n// Will be applied to the webpack hash.\nconst CODE_GENERATION_REVISION: number = 1;\n// Match behavior of terser's \"some\" option\n// https://github.com/terser/terser/blob/d3d924fa9e4c57bbe286b811c6068bcc7026e902/lib/output.js#L175\nconst LICENSE_COMMENT_REGEX: RegExp = /@preserve|@lic|@cc_on|^\\**!/i;\n\nconst TAP_BEFORE: Tap = {\n name: PLUGIN_NAME,\n stage: STAGE_BEFORE\n};\nconst TAP_AFTER: Tap = {\n name: PLUGIN_NAME,\n stage: STAGE_AFTER\n};\n\ninterface IOptionsForHash extends Omit<IModuleMinifierPluginOptions, 'minifier'> {\n revision: number;\n minifier: undefined;\n}\n\ninterface ISourceCacheEntry {\n source: sources.Source;\n hash: string;\n}\n\nconst compilationMetadataMap: WeakMap<Compilation, IModuleMinifierPluginStats> = new WeakMap();\n\nfunction hashCodeFragment(code: string): string {\n return createHash('sha256').update(code).digest('hex');\n}\n\n/**\n * Base implementation of asset rehydration\n *\n * @param dehydratedAssets The dehydrated assets\n * @param compilation The webpack compilation\n */\nfunction defaultRehydrateAssets(\n dehydratedAssets: IDehydratedAssets,\n compilation: Compilation\n): IDehydratedAssets {\n const { assets, modules } = dehydratedAssets;\n\n const compilationMetadata: IModuleMinifierPluginStats | undefined = compilationMetadataMap.get(compilation);\n if (!compilationMetadata) {\n throw new Error(`Could not get compilation metadata`);\n }\n\n const { metadataByAssetFileName } = compilationMetadata;\n\n // Now assets/modules contain fully minified code. Rehydrate.\n for (const [assetName, info] of assets) {\n const banner: string = info.type === 'javascript' ? generateLicenseFileForAsset(compilation, info) : '';\n\n const replacementSource: sources.Source = rehydrateAsset(compilation, info, modules, banner, true);\n metadataByAssetFileName.set(assetName, {\n positionByModuleId: info.renderInfo\n });\n compilation.updateAsset(assetName, replacementSource);\n }\n\n return dehydratedAssets;\n}\n\nfunction isMinificationResultError(\n result: IModuleMinificationResult\n): result is IModuleMinificationErrorResult {\n return !!result.error;\n}\n\nfunction isLicenseComment(comment: Comment): boolean {\n return LICENSE_COMMENT_REGEX.test(comment.value);\n}\n\n/**\n * Webpack plugin that minifies code on a per-module basis rather than per-asset. The actual minification is handled by the input `minifier` object.\n * @public\n */\nexport class ModuleMinifierPlugin implements WebpackPluginInstance {\n public readonly hooks: IModuleMinifierPluginHooks;\n public minifier: IModuleMinifier;\n\n private readonly _enhancers: WebpackPluginInstance[];\n private readonly _sourceMap: boolean | undefined;\n\n private readonly _optionsForHash: IOptionsForHash;\n\n public constructor(options: IModuleMinifierPluginOptions) {\n this.hooks = {\n rehydrateAssets: new AsyncSeriesWaterfallHook(['dehydratedContent', 'compilation']),\n\n postProcessCodeFragment: new SyncWaterfallHook(['code', 'context'])\n };\n\n const { minifier, sourceMap } = options;\n\n this._optionsForHash = {\n ...options,\n minifier: undefined,\n revision: CODE_GENERATION_REVISION\n };\n\n this._enhancers = [];\n\n this.hooks.rehydrateAssets.tap(PLUGIN_NAME, defaultRehydrateAssets);\n this.minifier = minifier;\n\n this._sourceMap = sourceMap;\n }\n\n public static getCompilationStatistics(compilation: Compilation): IModuleMinifierPluginStats | undefined {\n return compilationMetadataMap.get(compilation);\n }\n\n public apply(compiler: Compiler): void {\n for (const enhancer of this._enhancers) {\n enhancer.apply(compiler);\n }\n\n const {\n options: { devtool, mode },\n webpack\n } = compiler;\n\n webpack.Template.numberToIdentifier = getIdentifier;\n\n const { CachedSource, ConcatSource, RawSource, ReplaceSource, SourceMapSource } = webpack.sources;\n // The explicit setting is preferred due to accuracy, but try to guess based on devtool\n const useSourceMaps: boolean =\n typeof this._sourceMap === 'boolean'\n ? this._sourceMap\n : typeof devtool === 'string'\n ? devtool.endsWith('source-map')\n : mode === 'production' && devtool !== false;\n\n this._optionsForHash.sourceMap = useSourceMaps;\n const binaryConfig: Buffer = Buffer.from(JSON.stringify(this._optionsForHash), 'utf-8');\n\n compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation, compilationData) => {\n const { normalModuleFactory } = compilationData;\n\n function addCommentExtraction(parser: javascript.JavascriptParser): void {\n parser.hooks.program.tap(PLUGIN_NAME, (program: unknown, comments: Comment[]) => {\n const relevantComments: Comment[] = comments.filter(isLicenseComment);\n if (comments.length > 0) {\n const module: Module = parser.state.module;\n if (!module.factoryMeta) {\n module.factoryMeta = {\n comments: relevantComments\n };\n } else {\n (module.factoryMeta as IFactoryMeta).comments = relevantComments;\n }\n }\n });\n }\n\n normalModuleFactory.hooks.parser.for('javascript/auto').tap(PLUGIN_NAME, addCommentExtraction);\n normalModuleFactory.hooks.parser.for('javascript/dynamic').tap(PLUGIN_NAME, addCommentExtraction);\n normalModuleFactory.hooks.parser.for('javascript/esm').tap(PLUGIN_NAME, addCommentExtraction);\n\n /**\n * Set of local module ids that have been processed.\n */\n const submittedModules: Set<string | number> = new Set();\n\n /**\n * The text and comments of all minified modules.\n */\n const minifiedModules: IModuleMap = new Map();\n\n /**\n * The text and comments of all minified chunks. Most of these are trivial, but the runtime chunk is a bit larger.\n */\n const minifiedAssets: IAssetMap = new Map();\n\n const metadataByModule: WeakMap<Module, IModuleStats> = new WeakMap();\n const metadataByAssetFileName: Map<string, IAssetStats> = new Map();\n const compilationStatistics: IModuleMinifierPluginStats = {\n metadataByModule,\n metadataByAssetFileName\n };\n compilationMetadataMap.set(compilation, compilationStatistics);\n function getOrCreateMetadata(mod: Module): IModuleStats {\n let moduleStats: IModuleStats | undefined = metadataByModule.get(mod);\n if (!moduleStats) {\n moduleStats = {\n hashByChunk: new Map(),\n sizeByHash: new Map()\n };\n metadataByModule.set(mod, moduleStats);\n }\n return moduleStats;\n }\n\n let pendingMinificationRequests: number = 0;\n /**\n * Indicates that all files have been sent to the minifier and therefore that when pending hits 0, assets can be rehydrated.\n */\n let allRequestsIssued: boolean = false;\n\n let resolveMinifyPromise: () => void;\n\n const postProcessCode: (\n code: sources.ReplaceSource,\n context: IPostProcessFragmentContext\n ) => sources.ReplaceSource = (code: sources.ReplaceSource, context: IPostProcessFragmentContext) =>\n this.hooks.postProcessCodeFragment.call(code, context);\n\n /**\n * Callback to invoke when a file has finished minifying.\n */\n function onFileMinified(): void {\n if (--pendingMinificationRequests === 0 && allRequestsIssued) {\n resolveMinifyPromise();\n }\n }\n\n const { minifier } = this;\n\n let minifierConnection: IMinifierConnection | undefined;\n\n // Typings for this object are not exposed\n // eslint-disable-next-line @typescript-eslint/typedef\n const javascriptHooks = webpack.javascript.JavascriptModulesPlugin.getCompilationHooks(compilation);\n\n /**\n * The minifier needs to know if the module was wrapped in a factory function, because\n * function (module, exports, require) { // <implementation> }\n * minifies to nothing. Unfortunately we can't tell by inspection if the output was wrapped or not.\n * However, the JavaScriptModulesPlugin invokes three hooks in order when rendering a module:\n * 1) renderModuleContent - Invoked for every module.\n * 2) renderModuleContainer - Invoked when wrapping a module in a factory.\n * 3) renderModulePackage - Invoked for every module as the last hook.\n */\n let nextModule: Module | undefined;\n const sourceCache: WeakMap<sources.Source, ISourceCacheEntry> = new WeakMap();\n javascriptHooks.renderModuleContent.tap(TAP_AFTER, (source) => {\n // Clear the identification state of the current module.\n nextModule = undefined;\n return source;\n });\n javascriptHooks.renderModuleContainer.tap(TAP_AFTER, (source, mod) => {\n // Module is being wrapped in a factory, so it is safe for per-module minification\n // Leave external modules in-place to avoid needing special handling for externals\n if (mod.context !== null || !(mod as ExternalModule).externalType) {\n nextModule = mod;\n }\n return source;\n });\n javascriptHooks.renderModulePackage.tap(\n TAP_AFTER,\n /**\n * Extracts the code for the module and sends it to be minified.\n */\n function minifyModule(\n source: sources.Source,\n mod: Module,\n chunkRenderContext: { chunk: Chunk }\n ): sources.Source {\n if (nextModule !== mod) {\n // This module is being inlined. Abandon per-module minification.\n return source;\n }\n\n const id: string | number = compilation.chunkGraph.getModuleId(mod);\n\n const metadata: IModuleStats = getOrCreateMetadata(mod);\n const cachedResult: ISourceCacheEntry | undefined = sourceCache.get(source);\n if (cachedResult) {\n metadata.hashByChunk.set(chunkRenderContext.chunk, cachedResult.hash);\n return cachedResult.source;\n }\n\n // If this module is wrapped in a factory, need to add boilerplate so that the minifier keeps the function\n const wrapped: sources.Source = new ConcatSource(\n MODULE_WRAPPER_PREFIX + '\\n',\n source,\n '\\n' + MODULE_WRAPPER_SUFFIX\n );\n\n const nameForMap: string = `(modules)/${id}`;\n\n const { source: wrappedCodeRaw, map } = useSourceMaps\n ? wrapped.sourceAndMap()\n : {\n source: wrapped.source(),\n map: undefined\n };\n\n const wrappedCode: string = wrappedCodeRaw.toString();\n const hash: string = hashCodeFragment(wrappedCode);\n metadata.hashByChunk.set(chunkRenderContext.chunk, hash);\n if (!submittedModules.has(hash)) {\n submittedModules.add(hash);\n\n ++pendingMinificationRequests;\n\n minifier.minify(\n {\n hash,\n code: wrappedCode,\n nameForMap: useSourceMaps ? nameForMap : undefined,\n externals: undefined\n },\n (result: IModuleMinificationResult) => {\n if (isMinificationResultError(result)) {\n compilation.errors.push(result.error as WebpackError);\n } else {\n try {\n const { code: minified, map: minifierMap } = result;\n\n const rawOutput: sources.Source = useSourceMaps\n ? new SourceMapSource(\n minified, // Code\n nameForMap, // File\n minifierMap!, // Base source map\n wrappedCode, // Source from before transform\n map!, // Source Map from before transform\n true // Remove original source\n )\n : new RawSource(minified);\n\n const unwrapped: sources.ReplaceSource = new ReplaceSource(rawOutput);\n const len: number = minified.length;\n\n // Trim off the boilerplate used to preserve the factory\n unwrapped.replace(0, MODULE_WRAPPER_PREFIX.length - 1, '');\n unwrapped.replace(len - MODULE_WRAPPER_SUFFIX.length, len - 1, '');\n\n const withIds: sources.Source = postProcessCode(unwrapped, {\n compilation,\n module: mod,\n loggingName: mod.identifier()\n });\n const cached: sources.CachedSource = new CachedSource(withIds);\n\n const minifiedSize: number = Buffer.byteLength(cached.source(), 'utf-8');\n metadata.sizeByHash.set(hash, minifiedSize);\n\n minifiedModules.set(hash, {\n source: cached,\n module: mod,\n id\n });\n } catch (err) {\n compilation.errors.push(err);\n }\n }\n\n onFileMinified();\n }\n );\n }\n\n const result: sources.Source = new RawSource(`${CHUNK_MODULE_TOKEN}${hash}`);\n sourceCache.set(source, {\n hash,\n source: result\n });\n\n // Return an expression to replace later\n return result;\n }\n );\n\n // The optimizeChunkModules hook is the last async hook that occurs before chunk rendering\n compilation.hooks.optimizeChunkModules.tapPromise(PLUGIN_NAME, async () => {\n minifierConnection = await minifier.connect();\n\n submittedModules.clear();\n });\n\n const isJSAsset: RegExp = /\\.[cm]?js(\\?.+)?$/;\n\n // This should happen before any other tasks that operate during processAssets\n compilation.hooks.processAssets.tapPromise(TAP_BEFORE, async (): Promise<void> => {\n const { chunkGraph, chunks } = compilation;\n\n // Still need to minify the rendered assets\n for (const chunk of chunks) {\n const allChunkModules: Iterable<Module> | undefined =\n chunkGraph.getChunkModulesIterableBySourceType(chunk, 'javascript');\n if (!allChunkModules) {\n // This chunk does not contain javascript modules\n continue;\n }\n\n for (const assetName of chunk.files) {\n const asset: sources.Source = compilation.assets[assetName];\n\n // Verify that this is a JS asset\n if (isJSAsset.test(assetName)) {\n ++pendingMinificationRequests;\n\n const rawCode: string = asset.source() as string;\n const nameForMap: string = `(chunks)/${assetName}`;\n\n const hash: string = hashCodeFragment(rawCode);\n\n minifier.minify(\n {\n hash,\n code: rawCode,\n nameForMap: useSourceMaps ? nameForMap : undefined,\n externals: undefined\n },\n (result: IModuleMinificationResult) => {\n if (isMinificationResultError(result)) {\n compilation.errors.push(result.error as WebpackError);\n console.error(result.error);\n } else {\n try {\n const { code: minified, map: minifierMap } = result;\n\n const rawOutput: sources.Source = useSourceMaps\n ? new SourceMapSource(\n minified, // Code\n nameForMap, // File\n minifierMap!, // Base source map\n rawCode, // Source from before transform\n undefined, // Source Map from before transform\n true // Remove original source\n )\n : new RawSource(minified);\n\n const withIds: sources.Source = postProcessCode(new ReplaceSource(rawOutput), {\n compilation,\n module: undefined,\n loggingName: assetName\n });\n\n minifiedAssets.set(assetName, {\n source: new CachedSource(withIds),\n chunk,\n fileName: assetName,\n renderInfo: new Map(),\n type: 'javascript'\n });\n } catch (err) {\n compilation.errors.push(err);\n }\n }\n\n onFileMinified();\n }\n );\n } else {\n // This isn't a JS asset. Don't try to minify the asset wrapper, though if it contains modules, those might still get replaced with minified versions.\n minifiedAssets.set(assetName, {\n // Still need to restore ids\n source: postProcessCode(new ReplaceSource(asset), {\n compilation,\n module: undefined,\n loggingName: assetName\n }),\n chunk,\n fileName: assetName,\n renderInfo: new Map(),\n type: 'unknown'\n });\n }\n }\n }\n\n allRequestsIssued = true;\n\n if (pendingMinificationRequests) {\n await new Promise<void>((resolve) => {\n resolveMinifyPromise = resolve;\n });\n }\n\n // Handle any error from the minifier.\n await minifierConnection?.disconnect();\n\n // All assets and modules have been minified, hand them off to be rehydrated\n await this.hooks.rehydrateAssets.promise(\n {\n assets: minifiedAssets,\n modules: minifiedModules\n },\n compilation\n );\n });\n\n // Need to update chunk hashes with information from this plugin\n javascriptHooks.chunkHash.tap(PLUGIN_NAME, (chunk, hash): void => {\n // Apply the options hash\n hash.update(binaryConfig);\n // Apply the hash from the minifier\n if (minifierConnection) {\n hash.update(minifierConnection.configHash, 'utf8');\n }\n });\n });\n }\n}\n"]}
|
|
@@ -2,6 +2,20 @@ import type { IModuleMinifier } from '@rushstack/module-minifier';
|
|
|
2
2
|
import type { AsyncSeriesWaterfallHook, SyncWaterfallHook } from 'tapable';
|
|
3
3
|
import type { Chunk, Compilation, Module, sources } from 'webpack';
|
|
4
4
|
import type { Comment } from 'estree';
|
|
5
|
+
/**
|
|
6
|
+
* Information about where the module was rendered in the emitted asset.
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface IRenderedModulePosition {
|
|
10
|
+
/**
|
|
11
|
+
* The offset from the start of tha asset to the start of the module, in characters.
|
|
12
|
+
*/
|
|
13
|
+
charOffset: number;
|
|
14
|
+
/**
|
|
15
|
+
* The length of the rendered module, in characters.
|
|
16
|
+
*/
|
|
17
|
+
charLength: number;
|
|
18
|
+
}
|
|
5
19
|
/**
|
|
6
20
|
* Information about a dehydrated webpack ECMAScript asset
|
|
7
21
|
* @public
|
|
@@ -19,6 +33,10 @@ export interface IAssetInfo {
|
|
|
19
33
|
* The raw chunk object from Webpack, in case information from it is necessary for reconstruction
|
|
20
34
|
*/
|
|
21
35
|
chunk: Chunk;
|
|
36
|
+
/**
|
|
37
|
+
* Information about the offsets and character lengths for each rendered module in the final asset.
|
|
38
|
+
*/
|
|
39
|
+
renderInfo: Map<string | number, IRenderedModulePosition>;
|
|
22
40
|
/**
|
|
23
41
|
* The type of the asset
|
|
24
42
|
* @example 'javascript'
|
|
@@ -39,6 +57,10 @@ export interface IModuleInfo {
|
|
|
39
57
|
* The raw module object from Webpack, in case information from it is necessary for reconstruction
|
|
40
58
|
*/
|
|
41
59
|
module: Module;
|
|
60
|
+
/**
|
|
61
|
+
* The id of the module, from the chunk graph.
|
|
62
|
+
*/
|
|
63
|
+
id: string | number;
|
|
42
64
|
}
|
|
43
65
|
/**
|
|
44
66
|
* This is the second parameter to the NormalModuleFactory `module` hook
|
|
@@ -83,6 +105,7 @@ export interface IFactoryMeta {
|
|
|
83
105
|
*/
|
|
84
106
|
export interface IModuleMinifierPluginStats {
|
|
85
107
|
metadataByModule: WeakMap<Module, IModuleStats>;
|
|
108
|
+
metadataByAssetFileName: Map<string, IAssetStats>;
|
|
86
109
|
}
|
|
87
110
|
/**
|
|
88
111
|
* Module size data as a function of the target chunk.
|
|
@@ -92,6 +115,13 @@ export interface IModuleStats {
|
|
|
92
115
|
hashByChunk: Map<Chunk, string>;
|
|
93
116
|
sizeByHash: Map<string, number>;
|
|
94
117
|
}
|
|
118
|
+
/**
|
|
119
|
+
* Rendered positional data
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
export interface IAssetStats {
|
|
123
|
+
positionByModuleId: Map<string | number, IRenderedModulePosition>;
|
|
124
|
+
}
|
|
95
125
|
/**
|
|
96
126
|
* A map from file names to dehydrated assets
|
|
97
127
|
* @public
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModuleMinifierPlugin.types.d.ts","sourceRoot":"","sources":["../src/ModuleMinifierPlugin.types.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,KAAK,EAAE,wBAAwB,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAC3E,OAAO,KAAK,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AACnE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AAEtC;;;GAGG;AACH,MAAM,WAAW,UAAU;IACzB;;OAEG;IACH,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC;IAEvB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC;IAEb;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;;GAGG;AACH,MAAM,WAAW,WAAW;IAC1B;;OAEG;IACH,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC;IAEvB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"ModuleMinifierPlugin.types.d.ts","sourceRoot":"","sources":["../src/ModuleMinifierPlugin.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModuleMinifierPlugin.types.js","sourceRoot":"","sources":["../src/ModuleMinifierPlugin.types.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport type { IModuleMinifier } from '@rushstack/module-minifier';\nimport type { AsyncSeriesWaterfallHook, SyncWaterfallHook } from 'tapable';\nimport type { Chunk, Compilation, Module, sources } from 'webpack';\nimport type { Comment } from 'estree';\n\n/**\n * Information about a dehydrated webpack ECMAScript asset\n * @public\n */\nexport interface IAssetInfo {\n /**\n * The (minified) boilerplate code for the asset. Will contain a token to be replaced by the minified modules.\n */\n source: sources.Source;\n\n /**\n * The name of the asset, used to index into compilation.assets\n */\n fileName: string;\n\n /**\n * The raw chunk object from Webpack, in case information from it is necessary for reconstruction\n */\n chunk: Chunk;\n\n /**\n * The type of the asset\n * @example 'javascript'\n * @example 'css'\n */\n type: string;\n}\n\n/**\n * Information about a minified module\n * @public\n */\nexport interface IModuleInfo {\n /**\n * The (minified) code of this module. Will be a function expression.\n */\n source: sources.Source;\n\n /**\n * The raw module object from Webpack, in case information from it is necessary for reconstruction\n */\n module: Module;\n}\n\n/**\n * This is the second parameter to the NormalModuleFactory `module` hook\n * @internal\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport interface _INormalModuleFactoryModuleData {\n resourceResolveData?: {\n /**\n * Contents of the description file (package.json) for the module\n */\n descriptionFileData?: {\n /**\n * The name of the package\n */\n name: string;\n };\n /**\n * Absolute path of the description file (package.json) for the module\n */\n descriptionFilePath?: string;\n /**\n * Absolute path of the directory containing the description file (package.json) for the module\n */\n descriptionFileRoot?: string;\n /**\n * Relative path from the description file (package.json) to the module\n */\n relativePath?: string;\n };\n}\n\n/**\n * Properties surfaced via the `factoryMeta` property on webpack modules\n * @public\n */\nexport interface IFactoryMeta {\n comments?: Comment[];\n skipMinification?: boolean;\n}\n\n/**\n * Statistics from the plugin. Namely module sizes.\n * @public\n */\nexport interface IModuleMinifierPluginStats {\n metadataByModule: WeakMap<Module, IModuleStats>;\n}\n\n/**\n * Module size data as a function of the target chunk.\n * @public\n */\nexport interface IModuleStats {\n hashByChunk: Map<Chunk, string>;\n sizeByHash: Map<string, number>;\n}\n\n/**\n * A map from file names to dehydrated assets\n * @public\n */\nexport type IAssetMap = Map<string, IAssetInfo>;\n/**\n * A map from module ids to minified modules\n * @public\n */\nexport type IModuleMap = Map<string | number, IModuleInfo>;\n\n/**\n * Options to the ModuleMinifierPlugin constructor\n * @public\n */\nexport interface IModuleMinifierPluginOptions {\n /**\n * Minifier implementation to use. Required.\n */\n minifier: IModuleMinifier;\n\n /**\n * Whether to enable source map processing. If not provided, will attempt to guess based on `mode` and `devtool` in the webpack config.\n * Set to `false` for faster builds at the expense of debuggability.\n */\n sourceMap?: boolean;\n}\n\n/**\n * The set of data remaining to rehydrate in the current compilation\n * @public\n */\nexport interface IDehydratedAssets {\n /**\n * The set of remaining assets to rehydrate. Each tap may remove some or all assets from this collection\n */\n assets: IAssetMap;\n\n /**\n * The set of modules to use for rehydrating assets.\n */\n modules: IModuleMap;\n}\n\n/**\n * Argument to the postProcessCodeFragment hook for the current execution context\n * @public\n */\nexport interface IPostProcessFragmentContext {\n /**\n * The current webpack compilation, for error reporting\n */\n compilation: Compilation;\n /**\n * A name to use for logging\n */\n loggingName: string;\n /**\n * The current module being processed, or `undefined` if not in a module (e.g. the bootstrapper)\n */\n module: Module | undefined;\n}\n\n/**\n * Hooks provided by the ModuleMinifierPlugin\n * @public\n */\nexport interface IModuleMinifierPluginHooks {\n /**\n * Hook invoked at the start of optimizeChunkAssets to rehydrate the minified boilerplate and runtime into chunk assets.\n */\n rehydrateAssets: AsyncSeriesWaterfallHook<[IDehydratedAssets, Compilation]>;\n\n /**\n * Hook invoked on code after it has been returned from the minifier.\n */\n postProcessCodeFragment: SyncWaterfallHook<[sources.ReplaceSource, IPostProcessFragmentContext]>;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"ModuleMinifierPlugin.types.js","sourceRoot":"","sources":["../src/ModuleMinifierPlugin.types.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport type { IModuleMinifier } from '@rushstack/module-minifier';\nimport type { AsyncSeriesWaterfallHook, SyncWaterfallHook } from 'tapable';\nimport type { Chunk, Compilation, Module, sources } from 'webpack';\nimport type { Comment } from 'estree';\n\n/**\n * Information about where the module was rendered in the emitted asset.\n * @public\n */\nexport interface IRenderedModulePosition {\n /**\n * The offset from the start of tha asset to the start of the module, in characters.\n */\n charOffset: number;\n /**\n * The length of the rendered module, in characters.\n */\n charLength: number;\n}\n\n/**\n * Information about a dehydrated webpack ECMAScript asset\n * @public\n */\nexport interface IAssetInfo {\n /**\n * The (minified) boilerplate code for the asset. Will contain a token to be replaced by the minified modules.\n */\n source: sources.Source;\n\n /**\n * The name of the asset, used to index into compilation.assets\n */\n fileName: string;\n\n /**\n * The raw chunk object from Webpack, in case information from it is necessary for reconstruction\n */\n chunk: Chunk;\n\n /**\n * Information about the offsets and character lengths for each rendered module in the final asset.\n */\n renderInfo: Map<string | number, IRenderedModulePosition>;\n\n /**\n * The type of the asset\n * @example 'javascript'\n * @example 'css'\n */\n type: string;\n}\n\n/**\n * Information about a minified module\n * @public\n */\nexport interface IModuleInfo {\n /**\n * The (minified) code of this module. Will be a function expression.\n */\n source: sources.Source;\n\n /**\n * The raw module object from Webpack, in case information from it is necessary for reconstruction\n */\n module: Module;\n\n /**\n * The id of the module, from the chunk graph.\n */\n id: string | number;\n}\n\n/**\n * This is the second parameter to the NormalModuleFactory `module` hook\n * @internal\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport interface _INormalModuleFactoryModuleData {\n resourceResolveData?: {\n /**\n * Contents of the description file (package.json) for the module\n */\n descriptionFileData?: {\n /**\n * The name of the package\n */\n name: string;\n };\n /**\n * Absolute path of the description file (package.json) for the module\n */\n descriptionFilePath?: string;\n /**\n * Absolute path of the directory containing the description file (package.json) for the module\n */\n descriptionFileRoot?: string;\n /**\n * Relative path from the description file (package.json) to the module\n */\n relativePath?: string;\n };\n}\n\n/**\n * Properties surfaced via the `factoryMeta` property on webpack modules\n * @public\n */\nexport interface IFactoryMeta {\n comments?: Comment[];\n skipMinification?: boolean;\n}\n\n/**\n * Statistics from the plugin. Namely module sizes.\n * @public\n */\nexport interface IModuleMinifierPluginStats {\n metadataByModule: WeakMap<Module, IModuleStats>;\n metadataByAssetFileName: Map<string, IAssetStats>;\n}\n\n/**\n * Module size data as a function of the target chunk.\n * @public\n */\nexport interface IModuleStats {\n hashByChunk: Map<Chunk, string>;\n sizeByHash: Map<string, number>;\n}\n\n/**\n * Rendered positional data\n * @public\n */\nexport interface IAssetStats {\n positionByModuleId: Map<string | number, IRenderedModulePosition>;\n}\n\n/**\n * A map from file names to dehydrated assets\n * @public\n */\nexport type IAssetMap = Map<string, IAssetInfo>;\n/**\n * A map from module ids to minified modules\n * @public\n */\nexport type IModuleMap = Map<string | number, IModuleInfo>;\n\n/**\n * Options to the ModuleMinifierPlugin constructor\n * @public\n */\nexport interface IModuleMinifierPluginOptions {\n /**\n * Minifier implementation to use. Required.\n */\n minifier: IModuleMinifier;\n\n /**\n * Whether to enable source map processing. If not provided, will attempt to guess based on `mode` and `devtool` in the webpack config.\n * Set to `false` for faster builds at the expense of debuggability.\n */\n sourceMap?: boolean;\n}\n\n/**\n * The set of data remaining to rehydrate in the current compilation\n * @public\n */\nexport interface IDehydratedAssets {\n /**\n * The set of remaining assets to rehydrate. Each tap may remove some or all assets from this collection\n */\n assets: IAssetMap;\n\n /**\n * The set of modules to use for rehydrating assets.\n */\n modules: IModuleMap;\n}\n\n/**\n * Argument to the postProcessCodeFragment hook for the current execution context\n * @public\n */\nexport interface IPostProcessFragmentContext {\n /**\n * The current webpack compilation, for error reporting\n */\n compilation: Compilation;\n /**\n * A name to use for logging\n */\n loggingName: string;\n /**\n * The current module being processed, or `undefined` if not in a module (e.g. the bootstrapper)\n */\n module: Module | undefined;\n}\n\n/**\n * Hooks provided by the ModuleMinifierPlugin\n * @public\n */\nexport interface IModuleMinifierPluginHooks {\n /**\n * Hook invoked at the start of optimizeChunkAssets to rehydrate the minified boilerplate and runtime into chunk assets.\n */\n rehydrateAssets: AsyncSeriesWaterfallHook<[IDehydratedAssets, Compilation]>;\n\n /**\n * Hook invoked on code after it has been returned from the minifier.\n */\n postProcessCodeFragment: SyncWaterfallHook<[sources.ReplaceSource, IPostProcessFragmentContext]>;\n}\n"]}
|
package/lib/RehydrateAsset.d.ts
CHANGED
|
@@ -8,5 +8,5 @@ import type { IAssetInfo, IModuleMap } from './ModuleMinifierPlugin.types';
|
|
|
8
8
|
* @param banner - A banner to inject for license information
|
|
9
9
|
* @public
|
|
10
10
|
*/
|
|
11
|
-
export declare function rehydrateAsset(compilation: Compilation, asset: IAssetInfo, moduleMap: IModuleMap, banner: string): sources.Source;
|
|
11
|
+
export declare function rehydrateAsset(compilation: Compilation, asset: IAssetInfo, moduleMap: IModuleMap, banner: string, emitRenderInfo?: boolean): sources.Source;
|
|
12
12
|
//# sourceMappingURL=RehydrateAsset.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RehydrateAsset.d.ts","sourceRoot":"","sources":["../src/RehydrateAsset.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAG3C,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAe,MAAM,8BAA8B,CAAC;AAExF;;;;;;GAMG;AACH,wBAAgB,cAAc,CAC5B,WAAW,EAAE,WAAW,EACxB,KAAK,EAAE,UAAU,EACjB,SAAS,EAAE,UAAU,EACrB,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"RehydrateAsset.d.ts","sourceRoot":"","sources":["../src/RehydrateAsset.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAG3C,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAe,MAAM,8BAA8B,CAAC;AAExF;;;;;;GAMG;AACH,wBAAgB,cAAc,CAC5B,WAAW,EAAE,WAAW,EACxB,KAAK,EAAE,UAAU,EACjB,SAAS,EAAE,UAAU,EACrB,MAAM,EAAE,MAAM,EACd,cAAc,CAAC,EAAE,OAAO,GACvB,OAAO,CAAC,MAAM,CAwEhB"}
|
package/lib/RehydrateAsset.js
CHANGED
|
@@ -11,7 +11,7 @@ const Constants_1 = require("./Constants");
|
|
|
11
11
|
* @param banner - A banner to inject for license information
|
|
12
12
|
* @public
|
|
13
13
|
*/
|
|
14
|
-
function rehydrateAsset(compilation, asset, moduleMap, banner) {
|
|
14
|
+
function rehydrateAsset(compilation, asset, moduleMap, banner, emitRenderInfo) {
|
|
15
15
|
const { source: assetSource } = asset;
|
|
16
16
|
const { webpack: { sources, WebpackError } } = compilation.compiler;
|
|
17
17
|
const assetCode = assetSource.source().toString();
|
|
@@ -25,6 +25,7 @@ function rehydrateAsset(compilation, asset, moduleMap, banner) {
|
|
|
25
25
|
let lastStart = 0;
|
|
26
26
|
const cachedAssetSource = new CachedSource(assetSource);
|
|
27
27
|
const source = new ConcatSource(banner);
|
|
28
|
+
let charOffset = banner.length;
|
|
28
29
|
// RegExp.exec uses null or an array as the return type, explicitly
|
|
29
30
|
let match = null;
|
|
30
31
|
while ((match = Constants_1.CHUNK_MODULE_REGEX.exec(assetCode))) {
|
|
@@ -33,15 +34,28 @@ function rehydrateAsset(compilation, asset, moduleMap, banner) {
|
|
|
33
34
|
if (moduleSource === undefined) {
|
|
34
35
|
compilation.errors.push(new WebpackError(`Missing module source for ${hash} in ${asset.fileName}!`));
|
|
35
36
|
}
|
|
36
|
-
|
|
37
|
+
const separator = extractSegmentFromSource(ReplaceSource, cachedAssetSource, lastStart, match.index);
|
|
38
|
+
source.add(separator);
|
|
39
|
+
charOffset += separator.size();
|
|
37
40
|
lastStart = Constants_1.CHUNK_MODULE_REGEX.lastIndex;
|
|
38
41
|
if (moduleSource) {
|
|
42
|
+
const charLength = moduleSource.source.size();
|
|
43
|
+
if (emitRenderInfo) {
|
|
44
|
+
asset.renderInfo.set(moduleSource.id, {
|
|
45
|
+
charOffset,
|
|
46
|
+
charLength
|
|
47
|
+
});
|
|
48
|
+
}
|
|
39
49
|
source.add(moduleSource.source);
|
|
50
|
+
charOffset += charLength;
|
|
40
51
|
}
|
|
41
52
|
else {
|
|
42
|
-
|
|
53
|
+
const errorModule = `()=>{throw new Error(\`Missing module with hash "${hash}"\`)}`;
|
|
54
|
+
source.add(errorModule);
|
|
55
|
+
charOffset += errorModule.length;
|
|
43
56
|
}
|
|
44
57
|
source.add('\n');
|
|
58
|
+
charOffset += 1;
|
|
45
59
|
}
|
|
46
60
|
source.add(extractSegmentFromSource(ReplaceSource, cachedAssetSource, lastStart, Infinity));
|
|
47
61
|
return new CachedSource(source);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RehydrateAsset.js","sourceRoot":"","sources":["../src/RehydrateAsset.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;AAK3D,2CAAqE;AAGrE;;;;;;GAMG;AACH,SAAgB,cAAc,CAC5B,WAAwB,EACxB,KAAiB,EACjB,SAAqB,EACrB,MAAc;
|
|
1
|
+
{"version":3,"file":"RehydrateAsset.js","sourceRoot":"","sources":["../src/RehydrateAsset.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport type { sources } from 'webpack';\nimport type { Compilation } from 'webpack';\n\nimport { CHUNK_MODULE_TOKEN, CHUNK_MODULE_REGEX } from './Constants';\nimport type { IAssetInfo, IModuleMap, IModuleInfo } from './ModuleMinifierPlugin.types';\n\n/**\n * Rehydrates an asset with minified modules.\n * @param asset - The asset\n * @param moduleMap - The minified modules\n * @param banner - A banner to inject for license information\n * @public\n */\nexport function rehydrateAsset(\n compilation: Compilation,\n asset: IAssetInfo,\n moduleMap: IModuleMap,\n banner: string,\n emitRenderInfo?: boolean\n): sources.Source {\n const { source: assetSource } = asset;\n const {\n webpack: { sources, WebpackError }\n } = compilation.compiler;\n\n const assetCode: string = assetSource.source().toString();\n\n const tokenIndex: number = assetCode.indexOf(CHUNK_MODULE_TOKEN);\n if (tokenIndex < 0) {\n // This is not a JS asset.\n return assetSource;\n }\n\n const { CachedSource, ConcatSource, ReplaceSource } = sources;\n\n CHUNK_MODULE_REGEX.lastIndex = -1;\n let lastStart: number = 0;\n\n const cachedAssetSource: sources.CachedSource = new CachedSource(assetSource);\n\n const source: sources.ConcatSource = new ConcatSource(banner);\n let charOffset: number = banner.length;\n\n // RegExp.exec uses null or an array as the return type, explicitly\n let match: RegExpExecArray | null = null;\n while ((match = CHUNK_MODULE_REGEX.exec(assetCode))) {\n const hash: string = match[1];\n\n const moduleSource: IModuleInfo | undefined = moduleMap.get(hash);\n if (moduleSource === undefined) {\n compilation.errors.push(new WebpackError(`Missing module source for ${hash} in ${asset.fileName}!`));\n }\n\n const separator: sources.ReplaceSource = extractSegmentFromSource(\n ReplaceSource,\n cachedAssetSource,\n lastStart,\n match.index\n );\n\n source.add(separator);\n charOffset += separator.size();\n\n lastStart = CHUNK_MODULE_REGEX.lastIndex;\n\n if (moduleSource) {\n const charLength: number = moduleSource.source.size();\n\n if (emitRenderInfo) {\n asset.renderInfo.set(moduleSource.id, {\n charOffset,\n charLength\n });\n }\n\n source.add(moduleSource.source);\n charOffset += charLength;\n } else {\n const errorModule: string = `()=>{throw new Error(\\`Missing module with hash \"${hash}\"\\`)}`;\n\n source.add(errorModule);\n charOffset += errorModule.length;\n }\n\n source.add('\\n');\n charOffset += 1;\n }\n\n source.add(extractSegmentFromSource(ReplaceSource, cachedAssetSource, lastStart, Infinity));\n\n return new CachedSource(source);\n}\n\n// In order to preserve source maps during substitution, have to use a ConcatSource instead of a ReplaceSource, so need to extract the segements from the original\nfunction extractSegmentFromSource(\n replaceSourceConstructor: typeof sources.ReplaceSource,\n source: sources.Source,\n start: number,\n end: number\n): sources.ReplaceSource {\n const result: sources.ReplaceSource = new replaceSourceConstructor(source);\n result.replace(end, Infinity, '');\n result.replace(0, start - 1, '');\n return result;\n}\n"]}
|
package/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from './Constants';
|
|
2
2
|
export * from './GenerateLicenseFileForAsset';
|
|
3
|
-
export type { IAssetInfo, IAssetMap, IDehydratedAssets, IFactoryMeta, IModuleInfo, IModuleMap, IModuleMinifierPluginHooks, IModuleMinifierPluginOptions, IModuleMinifierPluginStats, IModuleStats, IPostProcessFragmentContext } from './ModuleMinifierPlugin.types';
|
|
3
|
+
export type { IAssetInfo, IAssetMap, IAssetStats, IDehydratedAssets, IFactoryMeta, IModuleInfo, IModuleMap, IModuleMinifierPluginHooks, IModuleMinifierPluginOptions, IModuleMinifierPluginStats, IModuleStats, IPostProcessFragmentContext, IRenderedModulePosition } from './ModuleMinifierPlugin.types';
|
|
4
4
|
export * from './ModuleMinifierPlugin';
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,aAAa,CAAC;AAC5B,cAAc,+BAA+B,CAAC;AAC9C,YAAY,EACV,UAAU,EACV,SAAS,EACT,iBAAiB,EACjB,YAAY,EACZ,WAAW,EACX,UAAU,EACV,0BAA0B,EAC1B,4BAA4B,EAC5B,0BAA0B,EAC1B,YAAY,EACZ,2BAA2B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,aAAa,CAAC;AAC5B,cAAc,+BAA+B,CAAC;AAC9C,YAAY,EACV,UAAU,EACV,SAAS,EACT,WAAW,EACX,iBAAiB,EACjB,YAAY,EACZ,WAAW,EACX,UAAU,EACV,0BAA0B,EAC1B,4BAA4B,EAC5B,0BAA0B,EAC1B,YAAY,EACZ,2BAA2B,EAC3B,uBAAuB,EACxB,MAAM,8BAA8B,CAAC;AACtC,cAAc,wBAAwB,CAAC"}
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;;;;;;;;;;;;;;AAE3D,8CAA4B;AAC5B,gEAA8C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;;;;;;;;;;;;;;AAE3D,8CAA4B;AAC5B,gEAA8C;AAgB9C,yDAAuC","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nexport * from './Constants';\nexport * from './GenerateLicenseFileForAsset';\nexport type {\n IAssetInfo,\n IAssetMap,\n IAssetStats,\n IDehydratedAssets,\n IFactoryMeta,\n IModuleInfo,\n IModuleMap,\n IModuleMinifierPluginHooks,\n IModuleMinifierPluginOptions,\n IModuleMinifierPluginStats,\n IModuleStats,\n IPostProcessFragmentContext,\n IRenderedModulePosition\n} from './ModuleMinifierPlugin.types';\nexport * from './ModuleMinifierPlugin';\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/webpack5-module-minifier-plugin",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.0",
|
|
4
4
|
"description": "This plugin splits minification of webpack compilations into smaller units.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "dist/webpack5-module-minifier-plugin.d.ts",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@types/heft-jest": "1.0.1",
|
|
29
29
|
"@types/node": "14.18.36",
|
|
30
30
|
"memfs": "3.4.3",
|
|
31
|
-
"webpack": "~5.
|
|
31
|
+
"webpack": "~5.80.0",
|
|
32
32
|
"@rushstack/eslint-config": "3.2.0",
|
|
33
33
|
"@rushstack/heft": "0.50.0",
|
|
34
34
|
"@rushstack/heft-node-rig": "1.12.6",
|