@zohodesk/client_build_tool 0.0.14-exp.6 → 0.0.15

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +27 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
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
+
3
30
  # v0.0.14 (06-10-2025)
4
31
 
5
32
  **Feature:-**
package/README.md CHANGED
@@ -306,6 +306,33 @@ 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
+
309
336
  # v0.0.14 (06-10-2025)
310
337
 
311
338
  **Feature:-**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/client_build_tool",
3
- "version": "0.0.14-exp.6",
3
+ "version": "0.0.15",
4
4
  "description": "A CLI tool to build web applications and client libraries",
5
5
  "main": "lib/index.js",
6
6
  "bin": {