@swc/core 1.3.85 → 1.3.87
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 +49 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,55 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
- **(bindings/type)** Update types of `jsc.experimental` (#7972) ([e40fccb](https://github.com/swc-project/swc/commit/e40fccb9ce2a8fc925de818c8da4b6503aab7ae3))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
- **(es/compat)** Handle nullish in fn expr scope (#7980) ([5050f58](https://github.com/swc-project/swc/commit/5050f5820a43b8de7a87511070405e189eaafb5f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
- **(es/minifier)** Do not inline into a template literal with sequential inliner (#7971) ([b3d3a7b](https://github.com/swc-project/swc/commit/b3d3a7bc7339776e57ca402e77cf3fb22c774784))
|
|
15
|
+
|
|
16
|
+
## [1.3.86] - 2023-09-18
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
- **(es/compat)** Handle `PrivateName` in `logical_assignments` (#7958) ([28318f0](https://github.com/swc-project/swc/commit/28318f09ed358b2baa155141bc715c25f658a2eb))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
- **(es/minifier)** Handle `ModuleDecl` when transform const modules (#7959) ([06ca1fe](https://github.com/swc-project/swc/commit/06ca1fe0a03954883750c3c39d0163fc29596ad1))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
- **(es/module)** Preserve import specifier if resolving fails (#7955) ([be5b02a](https://github.com/swc-project/swc/commit/be5b02a8cfe2a2c1c399a4f9404b8fd097084234))
|
|
29
|
+
|
|
30
|
+
### Miscellaneous Tasks
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
- **(es/preset-env)** Add the repository url to `Cargo.toml` (#7941) ([ca22359](https://github.com/swc-project/swc/commit/ca22359dbd0ca6e2e925bdc240939f6bd6e9ac9a))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
- **(es/preset-env)** Ignore `tp` in the version of a browser version (#7968) ([005ddc5](https://github.com/swc-project/swc/commit/005ddc573e3752183783cc25dd6242b750f8beb5))
|
|
38
|
+
|
|
39
|
+
### Refactor
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
- **(es/lint)** Remove usage of `box_patterns` (#7966) ([f7b5e16](https://github.com/swc-project/swc/commit/f7b5e16aef968c9c9f38f40962edf334cc3983e6))
|
|
44
|
+
|
|
45
|
+
### Build
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
- **(bindings/node)** Link msvc runtime statically (#7965) ([0759779](https://github.com/swc-project/swc/commit/07597795cc39cce527f505bc5db304ad93082494))
|
|
50
|
+
|
|
51
|
+
## [1.3.85] - 2023-09-15
|
|
52
|
+
|
|
53
|
+
### Bug Fixes
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
8
57
|
- **(css/modules)** Support composes when using multiple subclass selectors (#7949) ([05ca19b](https://github.com/swc-project/swc/commit/05ca19b84489ae47f69d8228b3c0097164c7ec6e))
|
|
9
58
|
|
|
10
59
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.87",
|
|
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.87",
|
|
149
|
+
"@swc/core-darwin-x64": "1.3.87",
|
|
150
|
+
"@swc/core-linux-x64-gnu": "1.3.87",
|
|
151
|
+
"@swc/core-linux-x64-musl": "1.3.87",
|
|
152
|
+
"@swc/core-win32-ia32-msvc": "1.3.87",
|
|
153
|
+
"@swc/core-linux-arm64-gnu": "1.3.87",
|
|
154
|
+
"@swc/core-linux-arm-gnueabihf": "1.3.87",
|
|
155
|
+
"@swc/core-darwin-arm64": "1.3.87",
|
|
156
|
+
"@swc/core-linux-arm64-musl": "1.3.87",
|
|
157
|
+
"@swc/core-win32-arm64-msvc": "1.3.87"
|
|
158
158
|
},
|
|
159
159
|
"files": [
|
|
160
160
|
"CHANGELOG.md",
|