@constela/start 1.2.4 → 1.2.5
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.
|
@@ -2228,7 +2228,8 @@ async function bundleCSS(options) {
|
|
|
2228
2228
|
bundle: true,
|
|
2229
2229
|
outfile: outFile,
|
|
2230
2230
|
minify: options.minify ?? true,
|
|
2231
|
-
loader: { ".css": "css" }
|
|
2231
|
+
loader: { ".css": "css" },
|
|
2232
|
+
conditions: ["style"]
|
|
2232
2233
|
});
|
|
2233
2234
|
} else {
|
|
2234
2235
|
const virtualEntry = resolvedCssFiles.map((f) => `@import "${f}";`).join("\n");
|
|
@@ -2240,7 +2241,8 @@ async function bundleCSS(options) {
|
|
|
2240
2241
|
},
|
|
2241
2242
|
bundle: true,
|
|
2242
2243
|
outfile: outFile,
|
|
2243
|
-
minify: options.minify ?? true
|
|
2244
|
+
minify: options.minify ?? true,
|
|
2245
|
+
conditions: ["style"]
|
|
2244
2246
|
});
|
|
2245
2247
|
}
|
|
2246
2248
|
} catch (error) {
|
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constela/start",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "Meta-framework for Constela applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"unified": "^11.0.0",
|
|
42
42
|
"vite": "^6.0.0",
|
|
43
43
|
"@constela/compiler": "0.7.0",
|
|
44
|
+
"@constela/router": "8.0.0",
|
|
44
45
|
"@constela/core": "0.7.0",
|
|
45
46
|
"@constela/runtime": "0.10.1",
|
|
46
|
-
"@constela/router": "8.0.0",
|
|
47
47
|
"@constela/server": "3.0.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|