@swc/core 1.3.60 → 1.3.62
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 +63 -0
- package/bindings/README.md +6 -0
- package/bindings/binding_core_wasm/package.json +5 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,69 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
## [unreleased]
|
|
3
3
|
|
|
4
|
+
### Miscellaneous Tasks
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
- **(ci)** Publish npm packages with provenance option (#7481) ([e4e77fd](https://github.com/swc-project/swc/commit/e4e77fd84fdfb9472f9a19fe7e8b1a850954d67c))
|
|
9
|
+
|
|
10
|
+
## [1.3.62] - 2023-06-02
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
- **(es/minifier)** Don't generate generator arrows (#7466) ([e506635](https://github.com/swc-project/swc/commit/e506635f74e38cb7eb88a2fa540d8c4f71c7323a))
|
|
17
|
+
|
|
18
|
+
### Performance
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
- **(bindings)** Enable `share-generics` to reduce binary size (#7482) ([d623db4](https://github.com/swc-project/swc/commit/d623db48dedf08f32bf7a2afbf71cd1aed27d30a))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
- **(es/minifier)** Make minifier not overly generic (#7483) ([65ce5d1](https://github.com/swc-project/swc/commit/65ce5d1081271f1cb4db6d4537311fbb60a08359))
|
|
26
|
+
|
|
27
|
+
## [1.3.61] - 2023-05-30
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
- **(css/modules)** Don't drop the correct selector (#7450) ([d370324](https://github.com/swc-project/swc/commit/d370324cfd251af49853fe887644fcaa8d811431))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
- **(es/codegen)** Emit `;` for `TsImportEqualsDecl` (#7464) ([3935d02](https://github.com/swc-project/swc/commit/3935d02e365c2fcfdf517fe6dc5943f4ba2616cd))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
- **(es/parser)** Fix parsing of generic jsx element name (#7449) ([77850dd](https://github.com/swc-project/swc/commit/77850dd8f01f51af1e9dda3eabddd07b7e39c841))
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
- **(plugin/runner)** Disable `wasi_env` cleanup (#7458) ([1868d36](https://github.com/swc-project/swc/commit/1868d36cfed54e48c3439ec4547251e45731c93a))
|
|
43
|
+
|
|
44
|
+
### Features
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
- **(common)** Enable bytecheck for missing structs (#7465) ([56ac9eb](https://github.com/swc-project/swc/commit/56ac9eb6b3c8cc379ee4ccf55d6130e39aa641b8))
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
- **(es/minifier)** Inline for loop variables (#7445) ([0cd2b61](https://github.com/swc-project/swc/commit/0cd2b61b054031f1a49cae25a82925d52dff0a73))
|
|
52
|
+
|
|
53
|
+
### Miscellaneous Tasks
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
- **(es/preset-env)** Update data (#7459) ([e15adaf](https://github.com/swc-project/swc/commit/e15adaf6eaada62b6a3c1b8447fb39612dee7946))
|
|
58
|
+
|
|
59
|
+
### Testing
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
- **(es/parser)** Add a test for a fixed issue (#7467) ([8274cce](https://github.com/swc-project/swc/commit/8274cce9a7d0aca8d005a215b46f7db9ed7c5aed))
|
|
64
|
+
|
|
65
|
+
## [1.3.60] - 2023-05-25
|
|
66
|
+
|
|
4
67
|
### Bug Fixes
|
|
5
68
|
|
|
6
69
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
## SWC bindings
|
|
2
|
+
|
|
3
|
+
This folder contains actual bindings binary SWC will build for the supported platforms (`@swc/core`, `swc_cli`, `@swc/wasm`).
|
|
4
|
+
|
|
5
|
+
All the bindings binary uses publicly published `swc_core` SDK to build deterministic host binary for the specific changes, in result Cargo's workspace gets confused to select dependency versions if it belongs to the workspace contains unpublished packages. To avoid those problems, these bindings are not being built as part of the workspace.
|
|
6
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.62",
|
|
4
4
|
"description": "Super-fast alternative for babel",
|
|
5
5
|
"homepage": "https://swc.rs",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -145,16 +145,16 @@
|
|
|
145
145
|
"url": "https://opencollective.com/swc"
|
|
146
146
|
},
|
|
147
147
|
"optionalDependencies": {
|
|
148
|
-
"@swc/core-win32-x64-msvc": "1.3.
|
|
149
|
-
"@swc/core-darwin-x64": "1.3.
|
|
150
|
-
"@swc/core-linux-x64-gnu": "1.3.
|
|
151
|
-
"@swc/core-linux-x64-musl": "1.3.
|
|
152
|
-
"@swc/core-win32-ia32-msvc": "1.3.
|
|
153
|
-
"@swc/core-linux-arm64-gnu": "1.3.
|
|
154
|
-
"@swc/core-linux-arm-gnueabihf": "1.3.
|
|
155
|
-
"@swc/core-darwin-arm64": "1.3.
|
|
156
|
-
"@swc/core-linux-arm64-musl": "1.3.
|
|
157
|
-
"@swc/core-win32-arm64-msvc": "1.3.
|
|
148
|
+
"@swc/core-win32-x64-msvc": "1.3.62",
|
|
149
|
+
"@swc/core-darwin-x64": "1.3.62",
|
|
150
|
+
"@swc/core-linux-x64-gnu": "1.3.62",
|
|
151
|
+
"@swc/core-linux-x64-musl": "1.3.62",
|
|
152
|
+
"@swc/core-win32-ia32-msvc": "1.3.62",
|
|
153
|
+
"@swc/core-linux-arm64-gnu": "1.3.62",
|
|
154
|
+
"@swc/core-linux-arm-gnueabihf": "1.3.62",
|
|
155
|
+
"@swc/core-darwin-arm64": "1.3.62",
|
|
156
|
+
"@swc/core-linux-arm64-musl": "1.3.62",
|
|
157
|
+
"@swc/core-win32-arm64-msvc": "1.3.62"
|
|
158
158
|
},
|
|
159
159
|
"files": [
|
|
160
160
|
"CHANGELOG.md",
|