@pandacss/config 2.0.0-beta.1 → 2.0.0-beta.3
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.ts +1 -1
- package/package.json +6 -3
package/dist/index.d.ts
CHANGED
|
@@ -81,4 +81,4 @@ interface BundleConfigResult<T = Config> {
|
|
|
81
81
|
*/
|
|
82
82
|
declare function bundleConfig<T extends Config = Config>(filepath: string, cwd: string): Promise<BundleConfigResult<T>>;
|
|
83
83
|
|
|
84
|
-
export { type BundleConfigResult, ConfigSources, type LoadConfigOptions, type LoadConfigResult, bundleConfig, diffConfig, findConfig, loadConfig };
|
|
84
|
+
export { type BundleConfigResult, ConfigSources, type HostHooks, type LoadConfigOptions, type LoadConfigResult, bundleConfig, diffConfig, findConfig, loadConfig };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/config",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.3",
|
|
4
4
|
"description": "Self-contained loader that bundles and serializes a Panda config for the Rust compiler",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -45,8 +45,11 @@
|
|
|
45
45
|
"magic-string": "^0.30.21",
|
|
46
46
|
"microdiff": "1.5.0",
|
|
47
47
|
"rolldown": "1.0.0-rc.17",
|
|
48
|
-
"@pandacss/compiler-shared": "2.0.0-beta.
|
|
49
|
-
"@pandacss/types": "2.0.0-beta.
|
|
48
|
+
"@pandacss/compiler-shared": "2.0.0-beta.3",
|
|
49
|
+
"@pandacss/types": "2.0.0-beta.3"
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=22"
|
|
50
53
|
},
|
|
51
54
|
"scripts": {
|
|
52
55
|
"build": "tsup --dts",
|