@pandacss/parser 1.4.2 → 1.4.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.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -886,7 +886,7 @@ var svelteToTsx = (code) => {
|
|
|
886
886
|
const transformed = `${scripts.join("")}
|
|
887
887
|
const render = <div>${templateContent}</div>`;
|
|
888
888
|
return transformed.toString().trim();
|
|
889
|
-
} catch
|
|
889
|
+
} catch {
|
|
890
890
|
return "";
|
|
891
891
|
}
|
|
892
892
|
};
|
|
@@ -945,7 +945,7 @@ var vueToTsx = (code) => {
|
|
|
945
945
|
const transformed = new import_magic_string2.default(`${scriptContent}
|
|
946
946
|
const render = ${fileStr.toString()}`);
|
|
947
947
|
return transformed.toString();
|
|
948
|
-
} catch
|
|
948
|
+
} catch {
|
|
949
949
|
return "";
|
|
950
950
|
}
|
|
951
951
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -852,7 +852,7 @@ var svelteToTsx = (code) => {
|
|
|
852
852
|
const transformed = `${scripts.join("")}
|
|
853
853
|
const render = <div>${templateContent}</div>`;
|
|
854
854
|
return transformed.toString().trim();
|
|
855
|
-
} catch
|
|
855
|
+
} catch {
|
|
856
856
|
return "";
|
|
857
857
|
}
|
|
858
858
|
};
|
|
@@ -911,7 +911,7 @@ var vueToTsx = (code) => {
|
|
|
911
911
|
const transformed = new MagicString2(`${scriptContent}
|
|
912
912
|
const render = ${fileStr.toString()}`);
|
|
913
913
|
return transformed.toString();
|
|
914
|
-
} catch
|
|
914
|
+
} catch {
|
|
915
915
|
return "";
|
|
916
916
|
}
|
|
917
917
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/parser",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"description": "The static parser for panda css",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -29,20 +29,20 @@
|
|
|
29
29
|
"access": "public"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@vue/compiler-sfc": "3.
|
|
33
|
-
"magic-string": "0.30.
|
|
32
|
+
"@vue/compiler-sfc": "3.5.22",
|
|
33
|
+
"magic-string": "0.30.19",
|
|
34
34
|
"ts-morph": "26.0.0",
|
|
35
35
|
"ts-pattern": "5.8.0",
|
|
36
|
-
"@pandacss/config": "^1.4.
|
|
37
|
-
"@pandacss/
|
|
38
|
-
"@pandacss/
|
|
39
|
-
"@pandacss/
|
|
40
|
-
"@pandacss/
|
|
41
|
-
"@pandacss/
|
|
36
|
+
"@pandacss/config": "^1.4.3",
|
|
37
|
+
"@pandacss/core": "^1.4.3",
|
|
38
|
+
"@pandacss/extractor": "1.4.3",
|
|
39
|
+
"@pandacss/logger": "1.4.3",
|
|
40
|
+
"@pandacss/shared": "1.4.3",
|
|
41
|
+
"@pandacss/types": "1.4.3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@vue/compiler-core": "3.
|
|
45
|
-
"@pandacss/generator": "1.4.
|
|
44
|
+
"@vue/compiler-core": "3.5.22",
|
|
45
|
+
"@pandacss/generator": "1.4.3"
|
|
46
46
|
},
|
|
47
47
|
"files": [
|
|
48
48
|
"dist"
|