@pandacss/generator 0.0.0-dev-20231115170405 → 0.0.0-dev-20231115170809
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -3882,7 +3882,7 @@ var getFileEngine = (config) => {
|
|
|
3882
3882
|
return `export * from '${this.ext(file)}';`;
|
|
3883
3883
|
},
|
|
3884
3884
|
exportTypeStar(file) {
|
|
3885
|
-
return `export
|
|
3885
|
+
return `export * from '${this.__extDts(file)}';`;
|
|
3886
3886
|
},
|
|
3887
3887
|
isTypeFile(file) {
|
|
3888
3888
|
return file.endsWith(".d.ts") || file.endsWith(".d.mts");
|
package/dist/index.mjs
CHANGED
|
@@ -3857,7 +3857,7 @@ var getFileEngine = (config) => {
|
|
|
3857
3857
|
return `export * from '${this.ext(file)}';`;
|
|
3858
3858
|
},
|
|
3859
3859
|
exportTypeStar(file) {
|
|
3860
|
-
return `export
|
|
3860
|
+
return `export * from '${this.__extDts(file)}';`;
|
|
3861
3861
|
},
|
|
3862
3862
|
isTypeFile(file) {
|
|
3863
3863
|
return file.endsWith(".d.ts") || file.endsWith(".d.mts");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/generator",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20231115170809",
|
|
4
4
|
"description": "The css generator for css panda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
"pluralize": "8.0.0",
|
|
33
33
|
"postcss": "^8.4.31",
|
|
34
34
|
"ts-pattern": "5.0.5",
|
|
35
|
-
"@pandacss/core": "0.0.0-dev-
|
|
36
|
-
"@pandacss/is-valid-prop": "0.0.0-dev-
|
|
37
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
38
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
39
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
40
|
-
"@pandacss/types": "0.0.0-dev-
|
|
35
|
+
"@pandacss/core": "0.0.0-dev-20231115170809",
|
|
36
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20231115170809",
|
|
37
|
+
"@pandacss/logger": "0.0.0-dev-20231115170809",
|
|
38
|
+
"@pandacss/shared": "0.0.0-dev-20231115170809",
|
|
39
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20231115170809",
|
|
40
|
+
"@pandacss/types": "0.0.0-dev-20231115170809"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/pluralize": "0.0.30",
|
|
44
44
|
"hookable": "5.5.3",
|
|
45
|
-
"@pandacss/fixture": "0.0.0-dev-
|
|
45
|
+
"@pandacss/fixture": "0.0.0-dev-20231115170809"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsup src/index.ts --format=esm,cjs --dts",
|