@webmate-studio/builder 0.2.42 → 0.2.43
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/build-service.js +2 -2
- package/package.json +1 -1
package/build-service.js
CHANGED
|
@@ -250,8 +250,8 @@ async function buildComponent(payload) {
|
|
|
250
250
|
|
|
251
251
|
const cssResult = await generateComponentCSS(contentToScan, {
|
|
252
252
|
designTokens: null,
|
|
253
|
-
minify: true
|
|
254
|
-
includeBaseLayers:
|
|
253
|
+
minify: true
|
|
254
|
+
// includeBaseLayers: true (default) - Include all layers for deduplication
|
|
255
255
|
});
|
|
256
256
|
css = cssResult.css;
|
|
257
257
|
console.log(`[Build Service] ✓ CSS → ${(css.length / 1024).toFixed(2)}kb`);
|