@swc/core 1.2.150 → 1.2.151
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 +23 -0
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
## [unreleased]
|
|
3
3
|
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
- **(es/compat)** Enable `set_public_method` for TypeScript (#3884) ([cb93883](https://github.com/swc-project/swc/commit/cb93883232515cbce46d1f87a0f5feec37bd489c))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
- **(es/fixer)** Remove extra parens around iife in expression position (#3887) ([9dd0105](https://github.com/swc-project/swc/commit/9dd0105c5b5479e421b36a0fb5ea3f2ea788d8a5))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
- **(es/lints)** Support module/script mode in `duplicate_bindings` (#3880) ([0181fbe](https://github.com/swc-project/swc/commit/0181fbe63b04145b99475a63a81937d8039abcd7))
|
|
15
|
+
|
|
16
|
+
### Performance
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
- **(es/lints)** Extract top level bindings only if the rule is enabled (#3889) ([3e8efac](https://github.com/swc-project/swc/commit/3e8efacf3a804c4dbaa3f92fa2f5f08e425b7866))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
- **(es/minifier)** Add a fast-path to export merger (#3891) ([a47eed7](https://github.com/swc-project/swc/commit/a47eed7241bb3aa932cd51109c39b7f7fe6d4789))
|
|
24
|
+
|
|
25
|
+
## [1.2.150] - 2022-03-06
|
|
26
|
+
|
|
4
27
|
### Bug Fixes
|
|
5
28
|
|
|
6
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc/core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.151",
|
|
4
4
|
"description": "Super-fast alternative for babel",
|
|
5
5
|
"homepage": "https://swc.rs",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -107,18 +107,18 @@
|
|
|
107
107
|
"url": "https://opencollective.com/swc"
|
|
108
108
|
},
|
|
109
109
|
"optionalDependencies": {
|
|
110
|
-
"@swc/core-win32-x64-msvc": "1.2.
|
|
111
|
-
"@swc/core-darwin-x64": "1.2.
|
|
112
|
-
"@swc/core-linux-x64-gnu": "1.2.
|
|
113
|
-
"@swc/core-linux-x64-musl": "1.2.
|
|
114
|
-
"@swc/core-freebsd-x64": "1.2.
|
|
115
|
-
"@swc/core-win32-ia32-msvc": "1.2.
|
|
116
|
-
"@swc/core-linux-arm64-gnu": "1.2.
|
|
117
|
-
"@swc/core-linux-arm-gnueabihf": "1.2.
|
|
118
|
-
"@swc/core-darwin-arm64": "1.2.
|
|
119
|
-
"@swc/core-android-arm64": "1.2.
|
|
120
|
-
"@swc/core-linux-arm64-musl": "1.2.
|
|
121
|
-
"@swc/core-win32-arm64-msvc": "1.2.
|
|
122
|
-
"@swc/core-android-arm-eabi": "1.2.
|
|
110
|
+
"@swc/core-win32-x64-msvc": "1.2.151",
|
|
111
|
+
"@swc/core-darwin-x64": "1.2.151",
|
|
112
|
+
"@swc/core-linux-x64-gnu": "1.2.151",
|
|
113
|
+
"@swc/core-linux-x64-musl": "1.2.151",
|
|
114
|
+
"@swc/core-freebsd-x64": "1.2.151",
|
|
115
|
+
"@swc/core-win32-ia32-msvc": "1.2.151",
|
|
116
|
+
"@swc/core-linux-arm64-gnu": "1.2.151",
|
|
117
|
+
"@swc/core-linux-arm-gnueabihf": "1.2.151",
|
|
118
|
+
"@swc/core-darwin-arm64": "1.2.151",
|
|
119
|
+
"@swc/core-android-arm64": "1.2.151",
|
|
120
|
+
"@swc/core-linux-arm64-musl": "1.2.151",
|
|
121
|
+
"@swc/core-win32-arm64-msvc": "1.2.151",
|
|
122
|
+
"@swc/core-android-arm-eabi": "1.2.151"
|
|
123
123
|
}
|
|
124
124
|
}
|