@pandacss/node 0.40.0 → 0.40.1

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
@@ -3076,7 +3076,7 @@ var import_path5 = require("path");
3076
3076
  var import_preferred_pm = __toESM(require("preferred-pm"));
3077
3077
  var import_prettier = __toESM(require("prettier"));
3078
3078
  async function setupConfig(cwd, opts = {}) {
3079
- const { force, outExtension, jsxFramework, syntax } = opts;
3079
+ const { force, outExtension, jsxFramework, syntax, outdir = "styled-system" } = opts;
3080
3080
  let configFile;
3081
3081
  try {
3082
3082
  configFile = (0, import_config7.findConfig)({ cwd });
@@ -3115,7 +3115,7 @@ outExtension: '${outExtension}',` : ""}
3115
3115
  },
3116
3116
 
3117
3117
  // The output directory for your css system
3118
- outdir: "styled-system",
3118
+ outdir: ${JSON.stringify(outdir)},
3119
3119
  ${jsxFramework ? `
3120
3120
  // The JSX framework to use
3121
3121
  jsxFramework: '${jsxFramework}',` : ""}
package/dist/index.mjs CHANGED
@@ -3050,7 +3050,7 @@ import { join as join2 } from "path";
3050
3050
  import getPackageManager from "preferred-pm";
3051
3051
  import prettier from "prettier";
3052
3052
  async function setupConfig(cwd, opts = {}) {
3053
- const { force, outExtension, jsxFramework, syntax } = opts;
3053
+ const { force, outExtension, jsxFramework, syntax, outdir = "styled-system" } = opts;
3054
3054
  let configFile;
3055
3055
  try {
3056
3056
  configFile = findConfig2({ cwd });
@@ -3089,7 +3089,7 @@ outExtension: '${outExtension}',` : ""}
3089
3089
  },
3090
3090
 
3091
3091
  // The output directory for your css system
3092
- outdir: "styled-system",
3092
+ outdir: ${JSON.stringify(outdir)},
3093
3093
  ${jsxFramework ? `
3094
3094
  // The JSX framework to use
3095
3095
  jsxFramework: '${jsxFramework}',` : ""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/node",
3
- "version": "0.40.0",
3
+ "version": "0.40.1",
4
4
  "description": "The core css panda library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -52,15 +52,15 @@
52
52
  "ts-morph": "21.0.1",
53
53
  "ts-pattern": "5.0.8",
54
54
  "tsconfck": "3.0.2",
55
- "@pandacss/config": "0.40.0",
56
- "@pandacss/core": "0.40.0",
57
- "@pandacss/extractor": "0.40.0",
58
- "@pandacss/generator": "0.40.0",
59
- "@pandacss/logger": "0.40.0",
60
- "@pandacss/parser": "0.40.0",
61
- "@pandacss/shared": "0.40.0",
62
- "@pandacss/token-dictionary": "0.40.0",
63
- "@pandacss/types": "0.40.0"
55
+ "@pandacss/config": "0.40.1",
56
+ "@pandacss/core": "0.40.1",
57
+ "@pandacss/extractor": "0.40.1",
58
+ "@pandacss/generator": "0.40.1",
59
+ "@pandacss/logger": "0.40.1",
60
+ "@pandacss/parser": "0.40.1",
61
+ "@pandacss/shared": "0.40.1",
62
+ "@pandacss/token-dictionary": "0.40.1",
63
+ "@pandacss/types": "0.40.1"
64
64
  },
65
65
  "devDependencies": {
66
66
  "@types/fs-extra": "11.0.4",