@pandacss/node 0.3.2 → 0.4.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.
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +13 -13
package/dist/index.js
CHANGED
|
@@ -903,10 +903,10 @@ var nodeRuntime = {
|
|
|
903
903
|
};
|
|
904
904
|
process.setMaxListeners(Infinity);
|
|
905
905
|
process.on("unhandledRejection", (reason) => {
|
|
906
|
-
import_logger2.logger.error("
|
|
906
|
+
import_logger2.logger.error("\u274C", reason);
|
|
907
907
|
});
|
|
908
908
|
process.on("uncaughtException", (reason) => {
|
|
909
|
-
import_logger2.logger.error("
|
|
909
|
+
import_logger2.logger.error("\u274C", reason);
|
|
910
910
|
});
|
|
911
911
|
|
|
912
912
|
// src/output-engine.ts
|
package/dist/index.mjs
CHANGED
|
@@ -890,10 +890,10 @@ var nodeRuntime = {
|
|
|
890
890
|
};
|
|
891
891
|
process.setMaxListeners(Infinity);
|
|
892
892
|
process.on("unhandledRejection", (reason) => {
|
|
893
|
-
logger2.error("
|
|
893
|
+
logger2.error("\u274C", reason);
|
|
894
894
|
});
|
|
895
895
|
process.on("uncaughtException", (reason) => {
|
|
896
|
-
logger2.error("
|
|
896
|
+
logger2.error("\u274C", reason);
|
|
897
897
|
});
|
|
898
898
|
|
|
899
899
|
// src/output-engine.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/node",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "The core css panda library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"preferred-pm": "^3.0.3",
|
|
34
34
|
"ts-morph": "18.0.0",
|
|
35
35
|
"ts-pattern": "4.3.0",
|
|
36
|
-
"@pandacss/
|
|
37
|
-
"@pandacss/
|
|
38
|
-
"@pandacss/
|
|
39
|
-
"@pandacss/
|
|
40
|
-
"@pandacss/
|
|
41
|
-
"@pandacss/
|
|
42
|
-
"@pandacss/
|
|
43
|
-
"@pandacss/parser": "0.
|
|
44
|
-
"@pandacss/
|
|
45
|
-
"@pandacss/
|
|
46
|
-
"@pandacss/types": "0.
|
|
36
|
+
"@pandacss/core": "0.4.0",
|
|
37
|
+
"@pandacss/error": "0.4.0",
|
|
38
|
+
"@pandacss/extractor": "0.4.0",
|
|
39
|
+
"@pandacss/generator": "0.4.0",
|
|
40
|
+
"@pandacss/is-valid-prop": "0.4.0",
|
|
41
|
+
"@pandacss/logger": "0.4.0",
|
|
42
|
+
"@pandacss/config": "0.4.0",
|
|
43
|
+
"@pandacss/parser": "0.4.0",
|
|
44
|
+
"@pandacss/token-dictionary": "0.4.0",
|
|
45
|
+
"@pandacss/shared": "0.4.0",
|
|
46
|
+
"@pandacss/types": "0.4.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/fs-extra": "11.0.1",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@types/lodash.merge": "4.6.7",
|
|
53
53
|
"@types/pluralize": "0.0.29",
|
|
54
54
|
"boxen": "^7.1.0",
|
|
55
|
-
"@pandacss/fixture": "0.
|
|
55
|
+
"@pandacss/fixture": "0.4.0"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "tsup src/index.ts --format=cjs,esm --shims --dts",
|