@swc/core 1.3.88 → 1.3.90
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 +34 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
## [unreleased]
|
|
3
3
|
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
- **(es/codegen)** Fix codegen of unicode surrogates (#7985) ([39c680d](https://github.com/swc-project/swc/commit/39c680d814644fbde50b0f73a29aebe791812eb2))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
- **(es/codegen)** Fix codegen of optional chaining expr with a comment (#8005) ([f07bb48](https://github.com/swc-project/swc/commit/f07bb482e694a422591085621a38aff747294502))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
- **(es/typescript)** Handle `DeclareCollect` correctly (#8008) ([9d08b8a](https://github.com/swc-project/swc/commit/9d08b8a6145d486e570a22563c62a69722cf8759))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
- **(es/typescript)** Handle qualified access in assign pat (#8012) ([2f01aba](https://github.com/swc-project/swc/commit/2f01aba978415add87994f9b20e3e2db83fc48b6))
|
|
18
|
+
|
|
19
|
+
## [1.3.89] - 2023-09-25
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
- **(es)** Enable resolver if `jsc.baseUrl` is specified (#7998) ([f374ad9](https://github.com/swc-project/swc/commit/f374ad903a066ebf3a7e54a3656cb3fc44b37445))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
- **(es/compat)** Skip function scope in `block-scoped-fns` pass (#7975) ([d91a554](https://github.com/swc-project/swc/commit/d91a554033c8ce0ea2b2538b0e86abf5a81eac76))
|
|
29
|
+
|
|
30
|
+
### Refactor
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
- **(es/typescript)** Reimplement TypeScript pass (#7202) ([9c9a538](https://github.com/swc-project/swc/commit/9c9a538f23cb2bcd2f46e156babf64c7a81db245))
|
|
35
|
+
|
|
36
|
+
## [1.3.88] - 2023-09-24
|
|
37
|
+
|
|
4
38
|
### Features
|
|
5
39
|
|
|
6
40
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.90",
|
|
4
4
|
"description": "Super-fast alternative for babel",
|
|
5
5
|
"homepage": "https://swc.rs",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -148,16 +148,16 @@
|
|
|
148
148
|
"url": "https://opencollective.com/swc"
|
|
149
149
|
},
|
|
150
150
|
"optionalDependencies": {
|
|
151
|
-
"@swc/core-win32-x64-msvc": "1.3.
|
|
152
|
-
"@swc/core-darwin-x64": "1.3.
|
|
153
|
-
"@swc/core-linux-x64-gnu": "1.3.
|
|
154
|
-
"@swc/core-linux-x64-musl": "1.3.
|
|
155
|
-
"@swc/core-win32-ia32-msvc": "1.3.
|
|
156
|
-
"@swc/core-linux-arm64-gnu": "1.3.
|
|
157
|
-
"@swc/core-linux-arm-gnueabihf": "1.3.
|
|
158
|
-
"@swc/core-darwin-arm64": "1.3.
|
|
159
|
-
"@swc/core-linux-arm64-musl": "1.3.
|
|
160
|
-
"@swc/core-win32-arm64-msvc": "1.3.
|
|
151
|
+
"@swc/core-win32-x64-msvc": "1.3.90",
|
|
152
|
+
"@swc/core-darwin-x64": "1.3.90",
|
|
153
|
+
"@swc/core-linux-x64-gnu": "1.3.90",
|
|
154
|
+
"@swc/core-linux-x64-musl": "1.3.90",
|
|
155
|
+
"@swc/core-win32-ia32-msvc": "1.3.90",
|
|
156
|
+
"@swc/core-linux-arm64-gnu": "1.3.90",
|
|
157
|
+
"@swc/core-linux-arm-gnueabihf": "1.3.90",
|
|
158
|
+
"@swc/core-darwin-arm64": "1.3.90",
|
|
159
|
+
"@swc/core-linux-arm64-musl": "1.3.90",
|
|
160
|
+
"@swc/core-win32-arm64-msvc": "1.3.90"
|
|
161
161
|
},
|
|
162
162
|
"files": [
|
|
163
163
|
"CHANGELOG.md",
|