@pandacss/node 0.0.0-dev-20230512213429 → 0.0.0-dev-20230513095254

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
@@ -2601,6 +2601,8 @@ async function debugFiles(ctx, options) {
2601
2601
  ctx.config.optimize = true;
2602
2602
  if (!options.dry && options.outdir) {
2603
2603
  await (0, import_promises2.mkdir)(options.outdir, { recursive: true });
2604
+ import_logger5.logger.info("cli", `Writing ${import_logger5.colors.bold(`${options.outdir}/config.json`)}`);
2605
+ await (0, import_promises2.writeFile)(`${options.outdir}/config.json`, JSON.stringify(ctx.config, null, 2));
2604
2606
  }
2605
2607
  const filesWithCss = [];
2606
2608
  await Promise.all(
package/dist/index.mjs CHANGED
@@ -2590,6 +2590,8 @@ async function debugFiles(ctx, options) {
2590
2590
  ctx.config.optimize = true;
2591
2591
  if (!options.dry && options.outdir) {
2592
2592
  await mkdir(options.outdir, { recursive: true });
2593
+ logger5.info("cli", `Writing ${colors.bold(`${options.outdir}/config.json`)}`);
2594
+ await writeFile3(`${options.outdir}/config.json`, JSON.stringify(ctx.config, null, 2));
2593
2595
  }
2594
2596
  const filesWithCss = [];
2595
2597
  await Promise.all(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/node",
3
- "version": "0.0.0-dev-20230512213429",
3
+ "version": "0.0.0-dev-20230513095254",
4
4
  "description": "The core css panda library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -33,17 +33,17 @@
33
33
  "preferred-pm": "^3.0.3",
34
34
  "ts-morph": "18.0.0",
35
35
  "ts-pattern": "4.3.0",
36
- "@pandacss/config": "0.0.0-dev-20230512213429",
37
- "@pandacss/core": "0.0.0-dev-20230512213429",
38
- "@pandacss/error": "0.0.0-dev-20230512213429",
39
- "@pandacss/generator": "0.0.0-dev-20230512213429",
40
- "@pandacss/is-valid-prop": "0.0.0-dev-20230512213429",
41
- "@pandacss/logger": "0.0.0-dev-20230512213429",
42
- "@pandacss/parser": "0.0.0-dev-20230512213429",
43
- "@pandacss/extractor": "0.0.0-dev-20230512213429",
44
- "@pandacss/shared": "0.0.0-dev-20230512213429",
45
- "@pandacss/token-dictionary": "0.0.0-dev-20230512213429",
46
- "@pandacss/types": "0.0.0-dev-20230512213429"
36
+ "@pandacss/config": "0.0.0-dev-20230513095254",
37
+ "@pandacss/core": "0.0.0-dev-20230513095254",
38
+ "@pandacss/error": "0.0.0-dev-20230513095254",
39
+ "@pandacss/generator": "0.0.0-dev-20230513095254",
40
+ "@pandacss/is-valid-prop": "0.0.0-dev-20230513095254",
41
+ "@pandacss/logger": "0.0.0-dev-20230513095254",
42
+ "@pandacss/parser": "0.0.0-dev-20230513095254",
43
+ "@pandacss/extractor": "0.0.0-dev-20230513095254",
44
+ "@pandacss/shared": "0.0.0-dev-20230513095254",
45
+ "@pandacss/token-dictionary": "0.0.0-dev-20230513095254",
46
+ "@pandacss/types": "0.0.0-dev-20230513095254"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/fs-extra": "11.0.1",
@@ -53,7 +53,7 @@
53
53
  "@types/pluralize": "0.0.29",
54
54
  "boxen": "^7.1.0",
55
55
  "gzip-size": "^7.0.0",
56
- "@pandacss/fixture": "0.0.0-dev-20230512213429"
56
+ "@pandacss/fixture": "0.0.0-dev-20230513095254"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "tsup src/index.ts --format=cjs,esm --shims --dts",