@swc/core 1.3.13 → 1.3.14
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 +9 -14
- package/package.json +13 -19
package/CHANGELOG.md
CHANGED
|
@@ -5,20 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
- **(es/compat)** Fix destructuring of an empty array (#6314) ([3bea6f7](https://github.com/swc-project/swc/commit/3bea6f7248826a3865a2148ce65c6cbaa9d03790))
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
- **(es/helpers)** Fix `toArray` (#6318) ([e34c25e](https://github.com/swc-project/swc/commit/e34c25e40dc9f4998b31eed6b2a1efc43b87b205))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
- **(es/resolver)** Change order for switch cases (#6317) ([2737aea](https://github.com/swc-project/swc/commit/2737aea312e0b182413401d34e5ce1614a7bd6df))
|
|
15
|
-
|
|
16
|
-
## [1.3.12] - 2022-11-02
|
|
17
|
-
|
|
18
|
-
### Bug Fixes
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
8
|
- **(common)** Remove `&mut` from `build_source_map_from` (#6276) ([47d7fca](https://github.com/swc-project/swc/commit/47d7fcaaedb97d1ce28727de6c22698fc2d0d11b))
|
|
23
9
|
|
|
24
10
|
|
|
@@ -34,6 +20,12 @@
|
|
|
34
20
|
- **(es/compat)** Fix `new.target` in a nested scope (#6296) ([aa18612](https://github.com/swc-project/swc/commit/aa18612e62eee6f0fd1977c10aa2102ce113e6e4))
|
|
35
21
|
|
|
36
22
|
|
|
23
|
+
- **(es/compat)** Fix destructuring of an empty array (#6314) ([3bea6f7](https://github.com/swc-project/swc/commit/3bea6f7248826a3865a2148ce65c6cbaa9d03790))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
- **(es/helpers)** Fix `toArray` (#6318) ([e34c25e](https://github.com/swc-project/swc/commit/e34c25e40dc9f4998b31eed6b2a1efc43b87b205))
|
|
27
|
+
|
|
28
|
+
|
|
37
29
|
- **(es/lints)** Fix `const-assign` in function expressions (#6294) ([a27392a](https://github.com/swc-project/swc/commit/a27392a251360ff1ddfab240399d5c1e317335bc))
|
|
38
30
|
|
|
39
31
|
|
|
@@ -49,6 +41,9 @@
|
|
|
49
41
|
- **(es/minifier)** Don't drop an inlined parameter as a duplicate (#6293) ([dd797f7](https://github.com/swc-project/swc/commit/dd797f7f1590401c309efce76a86719c24cd6b2b))
|
|
50
42
|
|
|
51
43
|
|
|
44
|
+
- **(es/resolver)** Change order for switch cases (#6317) ([2737aea](https://github.com/swc-project/swc/commit/2737aea312e0b182413401d34e5ce1614a7bd6df))
|
|
45
|
+
|
|
46
|
+
|
|
52
47
|
- **(es/typescript)** Fix stack overflow (#6250) ([28ec6e8](https://github.com/swc-project/swc/commit/28ec6e8fc70cf74722c93353c03e4fdedb21954a))
|
|
53
48
|
|
|
54
49
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.14",
|
|
4
4
|
"description": "Super-fast alternative for babel",
|
|
5
5
|
"homepage": "https://swc.rs",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -34,15 +34,12 @@
|
|
|
34
34
|
"defaults": true,
|
|
35
35
|
"additional": [
|
|
36
36
|
"x86_64-unknown-linux-musl",
|
|
37
|
-
"x86_64-unknown-freebsd",
|
|
38
37
|
"i686-pc-windows-msvc",
|
|
39
38
|
"aarch64-unknown-linux-gnu",
|
|
40
39
|
"armv7-unknown-linux-gnueabihf",
|
|
41
40
|
"aarch64-apple-darwin",
|
|
42
|
-
"aarch64-linux-android",
|
|
43
41
|
"aarch64-unknown-linux-musl",
|
|
44
|
-
"aarch64-pc-windows-msvc"
|
|
45
|
-
"armv7-linux-androideabi"
|
|
42
|
+
"aarch64-pc-windows-msvc"
|
|
46
43
|
]
|
|
47
44
|
}
|
|
48
45
|
},
|
|
@@ -98,7 +95,7 @@
|
|
|
98
95
|
"@babel/preset-typescript": "^7.13.0",
|
|
99
96
|
"@babel/types": "^7.14.0",
|
|
100
97
|
"@napi-rs/cli": "^2.10.0",
|
|
101
|
-
"@swc/core": "
|
|
98
|
+
"@swc/core": "=1.2.220",
|
|
102
99
|
"@swc/helpers": "^0.4.2",
|
|
103
100
|
"@swc/plugin-jest": "^1.2.12",
|
|
104
101
|
"@taplo/cli": "^0.3.2",
|
|
@@ -144,19 +141,16 @@
|
|
|
144
141
|
"url": "https://opencollective.com/swc"
|
|
145
142
|
},
|
|
146
143
|
"optionalDependencies": {
|
|
147
|
-
"@swc/core-win32-x64-msvc": "1.3.
|
|
148
|
-
"@swc/core-darwin-x64": "1.3.
|
|
149
|
-
"@swc/core-linux-x64-gnu": "1.3.
|
|
150
|
-
"@swc/core-linux-x64-musl": "1.3.
|
|
151
|
-
"@swc/core-
|
|
152
|
-
"@swc/core-
|
|
153
|
-
"@swc/core-linux-
|
|
154
|
-
"@swc/core-
|
|
155
|
-
"@swc/core-
|
|
156
|
-
"@swc/core-
|
|
157
|
-
"@swc/core-linux-arm64-musl": "1.3.13",
|
|
158
|
-
"@swc/core-win32-arm64-msvc": "1.3.13",
|
|
159
|
-
"@swc/core-android-arm-eabi": "1.3.13"
|
|
144
|
+
"@swc/core-win32-x64-msvc": "1.3.14",
|
|
145
|
+
"@swc/core-darwin-x64": "1.3.14",
|
|
146
|
+
"@swc/core-linux-x64-gnu": "1.3.14",
|
|
147
|
+
"@swc/core-linux-x64-musl": "1.3.14",
|
|
148
|
+
"@swc/core-win32-ia32-msvc": "1.3.14",
|
|
149
|
+
"@swc/core-linux-arm64-gnu": "1.3.14",
|
|
150
|
+
"@swc/core-linux-arm-gnueabihf": "1.3.14",
|
|
151
|
+
"@swc/core-darwin-arm64": "1.3.14",
|
|
152
|
+
"@swc/core-linux-arm64-musl": "1.3.14",
|
|
153
|
+
"@swc/core-win32-arm64-msvc": "1.3.14"
|
|
160
154
|
},
|
|
161
155
|
"files": [
|
|
162
156
|
"CHANGELOG.md",
|