@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
@@ -3,7 +3,7 @@ import {
3
3
  createDevServer,
4
4
  loadConfig,
5
5
  resolveConfig
6
- } from "../chunk-MP2KUHWS.js";
6
+ } from "../chunk-C4DIT5X5.js";
7
7
  import "../chunk-PUTC5BCP.js";
8
8
 
9
9
  // src/cli/index.ts
package/dist/index.js CHANGED
@@ -23,7 +23,7 @@ import {
23
23
  transformCsv,
24
24
  transformMdx,
25
25
  transformYaml
26
- } from "./chunk-MP2KUHWS.js";
26
+ } from "./chunk-C4DIT5X5.js";
27
27
  import {
28
28
  generateHydrationScript,
29
29
  renderPage,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constela/start",
3
- "version": "1.2.4",
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": {