@swc/core 1.3.46 → 1.3.47

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +16 -11
package/CHANGELOG.md CHANGED
@@ -1,4 +1,36 @@
1
1
  # Changelog
2
+ ## [unreleased]
3
+
4
+ ### Bug Fixes
5
+
6
+
7
+
8
+ - **(bindings/node)** Make peer dependency of helpers optional (#7216) ([e86d598](https://github.com/swc-project/swc/commit/e86d59882a6644a63e98094127694f27b3c1b5a4))
9
+
10
+
11
+ - **(es/compat)** Fix `finally` handling of `generator` (#7215) ([f5c62fb](https://github.com/swc-project/swc/commit/f5c62fbbf8ccbadec4daae4a2158b7b2fc707a2b))
12
+
13
+
14
+ - **(es/minifier)** Don't remove used var decl (#7200) ([73bc29e](https://github.com/swc-project/swc/commit/73bc29eeb0e0a758daff2ec9567d8949fb48fa50))
15
+
16
+
17
+ - **(es/testing)** Ensure that we call `fold_program` (#7222) ([e241201](https://github.com/swc-project/swc/commit/e241201bf76c3ae111d815dac7dbcc169d12dc25))
18
+
19
+
20
+ - **(es/typescript)** Fix computation of enum bits (#7219) ([29bf176](https://github.com/swc-project/swc/commit/29bf1760befc5acf56841f4c369016e296184bdb))
21
+
22
+ ### Features
23
+
24
+
25
+
26
+ - **(es)** Expose stage 3 decorator (#7220) ([a7a53c6](https://github.com/swc-project/swc/commit/a7a53c6208ae63a07b663049575f3b50f37d2f2a))
27
+
28
+ ### Refactor
29
+
30
+
31
+
32
+ - **(macros/ast-node)** Drop `darling` to reduce compile time (#7214) ([3f61638](https://github.com/swc-project/swc/commit/3f61638cbfb1acc9fa59fa68434a182ba8bcfb2a))
33
+
2
34
  ## [1.3.45] - 2023-04-04
3
35
 
4
36
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/core",
3
- "version": "1.3.46",
3
+ "version": "1.3.47",
4
4
  "description": "Super-fast alternative for babel",
5
5
  "homepage": "https://swc.rs",
6
6
  "main": "./index.js",
@@ -136,21 +136,26 @@
136
136
  "peerDependencies": {
137
137
  "@swc/helpers": "^0.5.0"
138
138
  },
139
+ "peerDependenciesMeta": {
140
+ "@swc/helpers": {
141
+ "optional": true
142
+ }
143
+ },
139
144
  "funding": {
140
145
  "type": "opencollective",
141
146
  "url": "https://opencollective.com/swc"
142
147
  },
143
148
  "optionalDependencies": {
144
- "@swc/core-win32-x64-msvc": "1.3.46",
145
- "@swc/core-darwin-x64": "1.3.46",
146
- "@swc/core-linux-x64-gnu": "1.3.46",
147
- "@swc/core-linux-x64-musl": "1.3.46",
148
- "@swc/core-win32-ia32-msvc": "1.3.46",
149
- "@swc/core-linux-arm64-gnu": "1.3.46",
150
- "@swc/core-linux-arm-gnueabihf": "1.3.46",
151
- "@swc/core-darwin-arm64": "1.3.46",
152
- "@swc/core-linux-arm64-musl": "1.3.46",
153
- "@swc/core-win32-arm64-msvc": "1.3.46"
149
+ "@swc/core-win32-x64-msvc": "1.3.47",
150
+ "@swc/core-darwin-x64": "1.3.47",
151
+ "@swc/core-linux-x64-gnu": "1.3.47",
152
+ "@swc/core-linux-x64-musl": "1.3.47",
153
+ "@swc/core-win32-ia32-msvc": "1.3.47",
154
+ "@swc/core-linux-arm64-gnu": "1.3.47",
155
+ "@swc/core-linux-arm-gnueabihf": "1.3.47",
156
+ "@swc/core-darwin-arm64": "1.3.47",
157
+ "@swc/core-linux-arm64-musl": "1.3.47",
158
+ "@swc/core-win32-arm64-msvc": "1.3.47"
154
159
  },
155
160
  "files": [
156
161
  "CHANGELOG.md",