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