@pandacss/node 0.5.1 → 0.6.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
@@ -2372,6 +2372,7 @@ async function extractCss(ctx) {
2372
2372
  return bundleChunks(ctx);
2373
2373
  }
2374
2374
  async function bundleCss(ctx, outfile) {
2375
+ await extractFiles(ctx);
2375
2376
  const files = ctx.chunks.getFiles();
2376
2377
  await (0, import_promises2.writeFile)(outfile, ctx.getCss({ files, resolve: true }));
2377
2378
  return { files, msg: ctx.messages.buildComplete(files.length) };
package/dist/index.mjs CHANGED
@@ -2358,6 +2358,7 @@ async function extractCss(ctx) {
2358
2358
  return bundleChunks(ctx);
2359
2359
  }
2360
2360
  async function bundleCss(ctx, outfile) {
2361
+ await extractFiles(ctx);
2361
2362
  const files = ctx.chunks.getFiles();
2362
2363
  await writeFile3(outfile, ctx.getCss({ files, resolve: true }));
2363
2364
  return { files, msg: ctx.messages.buildComplete(files.length) };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/node",
3
- "version": "0.5.1",
3
+ "version": "0.6.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": "18.0.0",
35
35
  "ts-pattern": "4.3.0",
36
36
  "tsconfck": "^2.1.1",
37
- "@pandacss/config": "0.5.1",
38
- "@pandacss/core": "0.5.1",
39
- "@pandacss/error": "0.5.1",
40
- "@pandacss/extractor": "0.5.1",
41
- "@pandacss/generator": "0.5.1",
42
- "@pandacss/is-valid-prop": "0.5.1",
43
- "@pandacss/logger": "0.5.1",
44
- "@pandacss/parser": "0.5.1",
45
- "@pandacss/shared": "0.5.1",
46
- "@pandacss/token-dictionary": "0.5.1",
47
- "@pandacss/types": "0.5.1"
37
+ "@pandacss/config": "0.6.0",
38
+ "@pandacss/core": "0.6.0",
39
+ "@pandacss/error": "0.6.0",
40
+ "@pandacss/extractor": "0.6.0",
41
+ "@pandacss/generator": "0.6.0",
42
+ "@pandacss/is-valid-prop": "0.6.0",
43
+ "@pandacss/logger": "0.6.0",
44
+ "@pandacss/parser": "0.6.0",
45
+ "@pandacss/shared": "0.6.0",
46
+ "@pandacss/token-dictionary": "0.6.0",
47
+ "@pandacss/types": "0.6.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.29",
55
55
  "boxen": "^7.1.0",
56
- "@pandacss/fixture": "0.5.1"
56
+ "@pandacss/fixture": "0.6.0"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "tsup src/index.ts --format=cjs,esm --shims --dts",