@swc/core 1.2.140 → 1.2.141
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/CHANGELOG.md +0 -4657
- package/package.json +16 -17
- package/types.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc/core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.141",
|
|
4
4
|
"description": "Super-fast alternative for babel",
|
|
5
5
|
"homepage": "https://swc.rs",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -47,22 +47,6 @@
|
|
|
47
47
|
"registry": "https://registry.npmjs.org/",
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
|
-
"dependencies": {},
|
|
51
|
-
"optionalDependencies": {
|
|
52
|
-
"@swc/core-win32-x64-msvc": "1.2.140",
|
|
53
|
-
"@swc/core-darwin-x64": "1.2.140",
|
|
54
|
-
"@swc/core-linux-x64-gnu": "1.2.140",
|
|
55
|
-
"@swc/core-linux-x64-musl": "1.2.140",
|
|
56
|
-
"@swc/core-freebsd-x64": "1.2.140",
|
|
57
|
-
"@swc/core-win32-ia32-msvc": "1.2.140",
|
|
58
|
-
"@swc/core-linux-arm64-gnu": "1.2.140",
|
|
59
|
-
"@swc/core-linux-arm-gnueabihf": "1.2.140",
|
|
60
|
-
"@swc/core-darwin-arm64": "1.2.140",
|
|
61
|
-
"@swc/core-android-arm64": "1.2.140",
|
|
62
|
-
"@swc/core-linux-arm64-musl": "1.2.140",
|
|
63
|
-
"@swc/core-win32-arm64-msvc": "1.2.140",
|
|
64
|
-
"@swc/core-android-arm-eabi": "1.2.140"
|
|
65
|
-
},
|
|
66
50
|
"types": "./index.d.ts",
|
|
67
51
|
"scripts": {
|
|
68
52
|
"changelog": "git cliff --output CHANGELOG.md",
|
|
@@ -118,5 +102,20 @@
|
|
|
118
102
|
"funding": {
|
|
119
103
|
"type": "opencollective",
|
|
120
104
|
"url": "https://opencollective.com/swc"
|
|
105
|
+
},
|
|
106
|
+
"optionalDependencies": {
|
|
107
|
+
"@swc/core-win32-x64-msvc": "1.2.141",
|
|
108
|
+
"@swc/core-darwin-x64": "1.2.141",
|
|
109
|
+
"@swc/core-linux-x64-gnu": "1.2.141",
|
|
110
|
+
"@swc/core-linux-x64-musl": "1.2.141",
|
|
111
|
+
"@swc/core-freebsd-x64": "1.2.141",
|
|
112
|
+
"@swc/core-win32-ia32-msvc": "1.2.141",
|
|
113
|
+
"@swc/core-linux-arm64-gnu": "1.2.141",
|
|
114
|
+
"@swc/core-linux-arm-gnueabihf": "1.2.141",
|
|
115
|
+
"@swc/core-darwin-arm64": "1.2.141",
|
|
116
|
+
"@swc/core-android-arm64": "1.2.141",
|
|
117
|
+
"@swc/core-linux-arm64-musl": "1.2.141",
|
|
118
|
+
"@swc/core-win32-arm64-msvc": "1.2.141",
|
|
119
|
+
"@swc/core-android-arm-eabi": "1.2.141"
|
|
121
120
|
}
|
|
122
121
|
}
|
package/types.d.ts
CHANGED
|
@@ -960,7 +960,7 @@ export declare type Literal = StringLiteral | BooleanLiteral | NullLiteral | Num
|
|
|
960
960
|
export interface StringLiteral extends Node, HasSpan {
|
|
961
961
|
type: "StringLiteral";
|
|
962
962
|
value: string;
|
|
963
|
-
|
|
963
|
+
hasEscape: boolean;
|
|
964
964
|
}
|
|
965
965
|
export interface BooleanLiteral extends Node, HasSpan {
|
|
966
966
|
type: "BooleanLiteral";
|