@pandacss/node 0.0.0-dev-20231102165625 → 0.0.0-dev-20231102172322

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.d.mts CHANGED
@@ -217,6 +217,7 @@ declare function loadConfigAndCreateContext(options?: {
217
217
  declare function debugFiles(ctx: PandaContext, options: {
218
218
  outdir: string;
219
219
  dry: boolean;
220
+ onlyConfig?: boolean;
220
221
  }): Promise<void>;
221
222
 
222
223
  declare function execCommand(cmd: string, cwd: string): Promise<void>;
package/dist/index.d.ts CHANGED
@@ -217,6 +217,7 @@ declare function loadConfigAndCreateContext(options?: {
217
217
  declare function debugFiles(ctx: PandaContext, options: {
218
218
  outdir: string;
219
219
  dry: boolean;
220
+ onlyConfig?: boolean;
220
221
  }): Promise<void>;
221
222
 
222
223
  declare function execCommand(cmd: string, cwd: string): Promise<void>;
package/dist/index.js CHANGED
@@ -2786,6 +2786,10 @@ async function debugFiles(ctx, options) {
2786
2786
  import_logger6.logger.info("cli", `Writing ${import_logger6.colors.bold(`${outdir}/config.json`)}`);
2787
2787
  await fs.writeFile(`${outdir}/config.json`, JSON.stringify(ctx.config, null, 2));
2788
2788
  }
2789
+ if (options.onlyConfig) {
2790
+ measureTotal();
2791
+ return;
2792
+ }
2789
2793
  const filesWithCss = [];
2790
2794
  await Promise.allSettled(
2791
2795
  files.map(async (file) => {
package/dist/index.mjs CHANGED
@@ -2762,6 +2762,10 @@ async function debugFiles(ctx, options) {
2762
2762
  logger6.info("cli", `Writing ${colors.bold(`${outdir}/config.json`)}`);
2763
2763
  await fs.writeFile(`${outdir}/config.json`, JSON.stringify(ctx.config, null, 2));
2764
2764
  }
2765
+ if (options.onlyConfig) {
2766
+ measureTotal();
2767
+ return;
2768
+ }
2765
2769
  const filesWithCss = [];
2766
2770
  await Promise.allSettled(
2767
2771
  files.map(async (file) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/node",
3
- "version": "0.0.0-dev-20231102165625",
3
+ "version": "0.0.0-dev-20231102172322",
4
4
  "description": "The core css panda library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -46,17 +46,17 @@
46
46
  "ts-morph": "19.0.0",
47
47
  "ts-pattern": "5.0.5",
48
48
  "tsconfck": "^2.1.2",
49
- "@pandacss/config": "0.0.0-dev-20231102165625",
50
- "@pandacss/core": "0.0.0-dev-20231102165625",
51
- "@pandacss/error": "0.0.0-dev-20231102165625",
52
- "@pandacss/extractor": "0.0.0-dev-20231102165625",
53
- "@pandacss/generator": "0.0.0-dev-20231102165625",
54
- "@pandacss/is-valid-prop": "0.0.0-dev-20231102165625",
55
- "@pandacss/logger": "0.0.0-dev-20231102165625",
56
- "@pandacss/parser": "0.0.0-dev-20231102165625",
57
- "@pandacss/shared": "0.0.0-dev-20231102165625",
58
- "@pandacss/token-dictionary": "0.0.0-dev-20231102165625",
59
- "@pandacss/types": "0.0.0-dev-20231102165625"
49
+ "@pandacss/config": "0.0.0-dev-20231102172322",
50
+ "@pandacss/core": "0.0.0-dev-20231102172322",
51
+ "@pandacss/error": "0.0.0-dev-20231102172322",
52
+ "@pandacss/extractor": "0.0.0-dev-20231102172322",
53
+ "@pandacss/generator": "0.0.0-dev-20231102172322",
54
+ "@pandacss/is-valid-prop": "0.0.0-dev-20231102172322",
55
+ "@pandacss/logger": "0.0.0-dev-20231102172322",
56
+ "@pandacss/parser": "0.0.0-dev-20231102172322",
57
+ "@pandacss/shared": "0.0.0-dev-20231102172322",
58
+ "@pandacss/token-dictionary": "0.0.0-dev-20231102172322",
59
+ "@pandacss/types": "0.0.0-dev-20231102172322"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@types/fs-extra": "11.0.3",
@@ -66,7 +66,7 @@
66
66
  "@types/pluralize": "0.0.30",
67
67
  "boxen": "^7.1.1",
68
68
  "p-limit": "^4.0.0",
69
- "@pandacss/fixture": "0.0.0-dev-20231102165625"
69
+ "@pandacss/fixture": "0.0.0-dev-20231102172322"
70
70
  },
71
71
  "scripts": {
72
72
  "build": "tsup src/index.ts --format=cjs,esm --shims --dts",