@zohodesk/client_build_tool 0.0.15-exp.2 → 0.0.15-exp.4
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/CHANGELOG.md
CHANGED
|
@@ -1,32 +1,5 @@
|
|
|
1
1
|
# Changelog and Release Notes
|
|
2
2
|
|
|
3
|
-
# v0.0.15 (11-10-2025)
|
|
4
|
-
|
|
5
|
-
**Feature:-**
|
|
6
|
-
- Chunk Dependency Mapping: Added a new feature that generates a JSON file listing all chunk dependencies in the Webpack build
|
|
7
|
-
For example, if main.js is a chunk, the generated JSON will include all of its direct imports (dependencies).
|
|
8
|
-
- Purpose:
|
|
9
|
-
To provide clear visibility into chunk relationships and dependencies for debugging, optimization, and performance analysis.
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
chunkGraph:{
|
|
13
|
-
enable: { value: true },
|
|
14
|
-
fileName: ''
|
|
15
|
-
}
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
- Preload Chunk Split Visualization
|
|
19
|
-
Enhanced the Preload Chunk (PLC) mechanism to identify and list the sub-chunks generated from a preloaded parent chunk.
|
|
20
|
-
When a chunk is configured for preloading (e.g., ticket.js), the system now traces and records all the split chunks associated with it — for example
|
|
21
|
-
|
|
22
|
-
```
|
|
23
|
-
resourceHints: {
|
|
24
|
-
enable: true,
|
|
25
|
-
PreloadChunkNames: [//name of chunks to be preload//]
|
|
26
|
-
},
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
|
|
30
3
|
# v0.0.14 (06-10-2025)
|
|
31
4
|
|
|
32
5
|
**Feature:-**
|
package/README.md
CHANGED
|
@@ -306,33 +306,6 @@ First Release
|
|
|
306
306
|
- 'templates' command to create es for react library
|
|
307
307
|
# Changelog and Release Notes
|
|
308
308
|
|
|
309
|
-
# v0.0.15 (11-10-2025)
|
|
310
|
-
|
|
311
|
-
**Feature:-**
|
|
312
|
-
- Chunk Dependency Mapping: Added a new feature that generates a JSON file listing all chunk dependencies in the Webpack build
|
|
313
|
-
For example, if main.js is a chunk, the generated JSON will include all of its direct imports (dependencies).
|
|
314
|
-
- Purpose:
|
|
315
|
-
To provide clear visibility into chunk relationships and dependencies for debugging, optimization, and performance analysis.
|
|
316
|
-
|
|
317
|
-
```
|
|
318
|
-
chunkGraph:{
|
|
319
|
-
enable: { value: true },
|
|
320
|
-
fileName: ''
|
|
321
|
-
}
|
|
322
|
-
```
|
|
323
|
-
|
|
324
|
-
- Preload Chunk Split Visualization
|
|
325
|
-
Enhanced the Preload Chunk (PLC) mechanism to identify and list the sub-chunks generated from a preloaded parent chunk.
|
|
326
|
-
When a chunk is configured for preloading (e.g., ticket.js), the system now traces and records all the split chunks associated with it — for example
|
|
327
|
-
|
|
328
|
-
```
|
|
329
|
-
resourceHints: {
|
|
330
|
-
enable: true,
|
|
331
|
-
PreloadChunkNames: [//name of chunks to be preload//]
|
|
332
|
-
},
|
|
333
|
-
```
|
|
334
|
-
|
|
335
|
-
|
|
336
309
|
# v0.0.14 (06-10-2025)
|
|
337
310
|
|
|
338
311
|
**Feature:-**
|
|
@@ -13,7 +13,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
|
13
13
|
|
|
14
14
|
/* eslint-disable no-use-before-define */
|
|
15
15
|
function configChunkHierarchyPlugin(options) {
|
|
16
|
-
if (options.chunkGraph.enable
|
|
16
|
+
if (options.chunkGraph.enable || (0, _modeUtils.isProductionMode)(mode)) {
|
|
17
17
|
return new _ChunkHierarchyPlugin.default(options.chunkGraph.fileName);
|
|
18
18
|
}
|
|
19
19
|
|