@pandacss/config 1.4.2 → 1.5.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.
@@ -85,7 +85,9 @@ var artifactConfigDeps = {
85
85
  "types-entry": [],
86
86
  "types-gen": [],
87
87
  "types-gen-system": [],
88
- themes: ["themes"].concat(tokens)
88
+ themes: ["themes"].concat(tokens),
89
+ // staticCss depends on tokens (for wildcards) and recipes (for recipe rules)
90
+ "static-css": ["staticCss", "patterns", "theme.recipes", "theme.slotRecipes"].concat(tokens)
89
91
  };
90
92
  var artifactMatchers = Object.entries(artifactConfigDeps).map(([key, paths]) => {
91
93
  if (!paths.length) return () => void 0;
@@ -119,7 +119,9 @@ var artifactConfigDeps = {
119
119
  "types-entry": [],
120
120
  "types-gen": [],
121
121
  "types-gen-system": [],
122
- themes: ["themes"].concat(tokens)
122
+ themes: ["themes"].concat(tokens),
123
+ // staticCss depends on tokens (for wildcards) and recipes (for recipe rules)
124
+ "static-css": ["staticCss", "patterns", "theme.recipes", "theme.slotRecipes"].concat(tokens)
123
125
  };
124
126
  var artifactMatchers = Object.entries(artifactConfigDeps).map(([key, paths]) => {
125
127
  if (!paths.length) return () => void 0;
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  diffConfigs
3
- } from "./chunk-LZJ2CL2G.mjs";
3
+ } from "./chunk-62NHWTD3.mjs";
4
4
  export {
5
5
  diffConfigs
6
6
  };
package/dist/index.js CHANGED
@@ -196,7 +196,9 @@ var artifactConfigDeps = {
196
196
  "types-entry": [],
197
197
  "types-gen": [],
198
198
  "types-gen-system": [],
199
- themes: ["themes"].concat(tokens)
199
+ themes: ["themes"].concat(tokens),
200
+ // staticCss depends on tokens (for wildcards) and recipes (for recipe rules)
201
+ "static-css": ["staticCss", "patterns", "theme.recipes", "theme.slotRecipes"].concat(tokens)
200
202
  };
201
203
  var artifactMatchers = Object.entries(artifactConfigDeps).map(([key, paths]) => {
202
204
  if (!paths.length) return () => void 0;
@@ -371,7 +373,7 @@ function getDeps(opts, fromAlias) {
371
373
  const filename2 = resolveTsPathPattern(opts.pathMappings, mod);
372
374
  if (!filename2) return;
373
375
  getDeps(Object.assign({}, nextOpts, { filename: filename2 }), mod);
374
- } catch (err) {
376
+ } catch {
375
377
  }
376
378
  });
377
379
  }
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  diffConfigs
3
- } from "./chunk-LZJ2CL2G.mjs";
3
+ } from "./chunk-62NHWTD3.mjs";
4
4
  import {
5
5
  SEP,
6
6
  formatPath,
@@ -179,7 +179,7 @@ function getDeps(opts, fromAlias) {
179
179
  const filename2 = resolveTsPathPattern(opts.pathMappings, mod);
180
180
  if (!filename2) return;
181
181
  getDeps(Object.assign({}, nextOpts, { filename: filename2 }), mod);
182
- } catch (err) {
182
+ } catch {
183
183
  }
184
184
  });
185
185
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/config",
3
- "version": "1.4.2",
3
+ "version": "1.5.0",
4
4
  "description": "Find and load panda config",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -72,16 +72,16 @@
72
72
  "bundle-n-require": "1.1.2",
73
73
  "escalade": "3.1.2",
74
74
  "merge-anything": "5.1.7",
75
- "microdiff": "1.3.2",
75
+ "microdiff": "1.5.0",
76
76
  "typescript": "5.8.3",
77
- "@pandacss/logger": "1.4.2",
78
- "@pandacss/preset-base": "1.4.2",
79
- "@pandacss/preset-panda": "1.4.2",
80
- "@pandacss/shared": "1.4.2",
81
- "@pandacss/types": "1.4.2"
77
+ "@pandacss/logger": "1.5.0",
78
+ "@pandacss/preset-base": "1.5.0",
79
+ "@pandacss/preset-panda": "1.5.0",
80
+ "@pandacss/shared": "1.5.0",
81
+ "@pandacss/types": "1.5.0"
82
82
  },
83
83
  "devDependencies": {
84
- "pkg-types": "2.2.0"
84
+ "pkg-types": "2.3.0"
85
85
  },
86
86
  "scripts": {
87
87
  "build": "tsup --tsconfig tsconfig.build.json --dts",