@pandacss/types 0.0.0-dev-20240129173924 → 0.0.0-dev-20240130133424

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.
@@ -26,11 +26,7 @@ export type ArtifactId =
26
26
  | 'jsx-patterns'
27
27
  | 'jsx-patterns-index'
28
28
  | 'css-index'
29
- | 'reset.css'
30
- | 'global.css'
31
- | 'static.css'
32
29
  | 'package.json'
33
- | 'styles.css'
34
30
  | (string & {})
35
31
 
36
32
  export type CssArtifactType = 'preflight' | 'tokens' | 'static' | 'global' | 'keyframes'
package/dist/config.d.ts CHANGED
@@ -155,6 +155,13 @@ interface FileSystemOptions {
155
155
  * @default []
156
156
  */
157
157
  exclude?: string[]
158
+ /**
159
+ * List of globs or files that will trigger a config reload when changed.
160
+ *
161
+ * We automatically track the config file and (transitive) files imported by the config file as much as possible, but sometimes we might miss some.
162
+ * Use this option as a workaround.
163
+ */
164
+ dependencies?: string[]
158
165
  /**
159
166
  * Whether to watch for changes and regenerate the css.
160
167
  * @default false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.0.0-dev-20240129173924",
3
+ "version": "0.0.0-dev-20240130133424",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -30,7 +30,7 @@
30
30
  "microdiff": "^1.3.2",
31
31
  "ncp": "^2.0.0",
32
32
  "pkg-types": "1.0.3",
33
- "@pandacss/extractor": "0.0.0-dev-20240129173924"
33
+ "@pandacss/extractor": "0.0.0-dev-20240130133424"
34
34
  },
35
35
  "scripts": {
36
36
  "dev": "tsx scripts/watch.ts",