@pandacss/node 0.10.0 → 0.11.0

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/dist/index.js CHANGED
@@ -2390,10 +2390,10 @@ async function extractCss(ctx) {
2390
2390
  return bundleChunks(ctx);
2391
2391
  }
2392
2392
  async function bundleCss(ctx, outfile) {
2393
- await extractFiles(ctx);
2393
+ const extracted = await extractFiles(ctx);
2394
2394
  const files = ctx.chunks.getFiles();
2395
2395
  await (0, import_promises2.writeFile)(outfile, ctx.getCss({ files, resolve: true }));
2396
- return { files, msg: ctx.messages.buildComplete(files.length) };
2396
+ return { files, msg: ctx.messages.buildComplete(extracted.length) };
2397
2397
  }
2398
2398
 
2399
2399
  // src/parse-dependency.ts
package/dist/index.mjs CHANGED
@@ -2376,10 +2376,10 @@ async function extractCss(ctx) {
2376
2376
  return bundleChunks(ctx);
2377
2377
  }
2378
2378
  async function bundleCss(ctx, outfile) {
2379
- await extractFiles(ctx);
2379
+ const extracted = await extractFiles(ctx);
2380
2380
  const files = ctx.chunks.getFiles();
2381
2381
  await writeFile3(outfile, ctx.getCss({ files, resolve: true }));
2382
- return { files, msg: ctx.messages.buildComplete(files.length) };
2382
+ return { files, msg: ctx.messages.buildComplete(extracted.length) };
2383
2383
  }
2384
2384
 
2385
2385
  // src/parse-dependency.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/node",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "The core css panda library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -34,17 +34,17 @@
34
34
  "ts-morph": "19.0.0",
35
35
  "ts-pattern": "5.0.4",
36
36
  "tsconfck": "^2.1.2",
37
- "@pandacss/config": "0.10.0",
38
- "@pandacss/core": "0.10.0",
39
- "@pandacss/error": "0.10.0",
40
- "@pandacss/extractor": "0.10.0",
41
- "@pandacss/generator": "0.10.0",
42
- "@pandacss/is-valid-prop": "0.10.0",
43
- "@pandacss/logger": "0.10.0",
44
- "@pandacss/parser": "0.10.0",
45
- "@pandacss/shared": "0.10.0",
46
- "@pandacss/token-dictionary": "0.10.0",
47
- "@pandacss/types": "0.10.0"
37
+ "@pandacss/config": "0.11.0",
38
+ "@pandacss/core": "0.11.0",
39
+ "@pandacss/error": "0.11.0",
40
+ "@pandacss/extractor": "0.11.0",
41
+ "@pandacss/generator": "0.11.0",
42
+ "@pandacss/is-valid-prop": "0.11.0",
43
+ "@pandacss/logger": "0.11.0",
44
+ "@pandacss/parser": "0.11.0",
45
+ "@pandacss/shared": "0.11.0",
46
+ "@pandacss/token-dictionary": "0.11.0",
47
+ "@pandacss/types": "0.11.0"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@types/fs-extra": "11.0.1",
@@ -53,7 +53,7 @@
53
53
  "@types/lodash.merge": "4.6.7",
54
54
  "@types/pluralize": "0.0.30",
55
55
  "boxen": "^7.1.1",
56
- "@pandacss/fixture": "0.10.0"
56
+ "@pandacss/fixture": "0.11.0"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "tsup src/index.ts --format=cjs,esm --shims --dts",