@zohodesk/client_build_tool 0.0.17-exp.1 → 0.0.18-exp.1

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,5 +1,11 @@
1
1
  # Changelog and Release Notes
2
2
 
3
+ # v0.0.18 (23-12-2025)
4
+
5
+ **Adjustments:-**
6
+ - remove the unwanted console in the previous version
7
+ - html not creation issue due to the generate html option fixed
8
+
3
9
  # v0.0.17 (22-12-2025)
4
10
 
5
11
  **Feature:-**
package/README.md CHANGED
@@ -475,6 +475,12 @@ First Release
475
475
  - 'templates' command to create es for react library
476
476
  # Changelog and Release Notes
477
477
 
478
+ # v0.0.18 (23-12-2025)
479
+
480
+ **Adjustments:-**
481
+ - remove the unwanted console in the previous version
482
+ - html not creation issue due to the generate html option fixed
483
+
478
484
  # v0.0.17 (22-12-2025)
479
485
 
480
486
  **Feature:-**
@@ -27,7 +27,7 @@ class CssCustomOrderPlugin {
27
27
  Object.keys(assets).filter(file => file.includes('runtime')).forEach(filename => {
28
28
  try {
29
29
  let source = assets[filename].source().toString();
30
- let changedCode = `var referenceTag = document.getElementById(${this.className});
30
+ let changedCode = `var referenceTag = document.getElementById('${this.className}');
31
31
  document.head.insertBefore(linkTag, referenceTag);`;
32
32
  const result = source.replace('document.head.appendChild(linkTag);', changedCode);
33
33
  compilation.updateAsset(filename, new RawSource(result));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/client_build_tool",
3
- "version": "0.0.17-exp.1",
3
+ "version": "0.0.18-exp.1",
4
4
  "description": "A CLI tool to build web applications and client libraries",
5
5
  "main": "lib/index.js",
6
6
  "bin": {