@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
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));
|