@swc/core 1.2.211 → 1.2.212

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 +14 -14
package/CHANGELOG.md CHANGED
@@ -5,6 +5,38 @@
5
5
 
6
6
 
7
7
 
8
+ - **(es/modules)** Add the missing span for `export default` (#5170) ([997240c](https://github.com/swc-project/swc/commit/997240cfe68ff7787d73e93758f2d2304715e249))
9
+
10
+
11
+ - **(es/modules)** Keep TDZ for `export default` if possible (#5164) ([56ad09a](https://github.com/swc-project/swc/commit/56ad09afb245b940a660a394908c1501fa5781ef))
12
+
13
+ ### Features
14
+
15
+
16
+
17
+ - **(plugin/macros)** Export new interface for getting plugin schema version (#5166) ([f167198](https://github.com/swc-project/swc/commit/f1671984708e167ab360e1a5e6a43d4a37a8023a))
18
+
19
+
20
+ - **(visit)** Add index to `AstKind` (#5138) ([ac3a55a](https://github.com/swc-project/swc/commit/ac3a55a4357e8985614128e19b02461de7371185))
21
+
22
+ ### Miscellaneous Tasks
23
+
24
+
25
+
26
+ - **(ci)** Fix benchmark action (#5176) ([7d4b496](https://github.com/swc-project/swc/commit/7d4b496e9ec394d8c93ad4cae31434ce74e63a8f))
27
+
28
+ ### Performance
29
+
30
+
31
+
32
+ - **(es/minifier)** Remove wrong logic (#5178) ([d8f57ab](https://github.com/swc-project/swc/commit/d8f57abd26b37aea4f76a069ab091ac33ec1072f))
33
+
34
+ ## [1.2.211] - 2022-07-09
35
+
36
+ ### Bug Fixes
37
+
38
+
39
+
8
40
  - **(cli)** Constructs config file correctly (#5146) ([4f87396](https://github.com/swc-project/swc/commit/4f87396b3b4ca1ec75eff77567f001ea5092598a))
9
41
 
10
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/core",
3
- "version": "1.2.211",
3
+ "version": "1.2.212",
4
4
  "description": "Super-fast alternative for babel",
5
5
  "homepage": "https://swc.rs",
6
6
  "main": "./index.js",
@@ -135,18 +135,18 @@
135
135
  "url": "https://opencollective.com/swc"
136
136
  },
137
137
  "optionalDependencies": {
138
- "@swc/core-win32-x64-msvc": "1.2.211",
139
- "@swc/core-darwin-x64": "1.2.211",
140
- "@swc/core-linux-x64-gnu": "1.2.211",
141
- "@swc/core-linux-x64-musl": "1.2.211",
142
- "@swc/core-freebsd-x64": "1.2.211",
143
- "@swc/core-win32-ia32-msvc": "1.2.211",
144
- "@swc/core-linux-arm64-gnu": "1.2.211",
145
- "@swc/core-linux-arm-gnueabihf": "1.2.211",
146
- "@swc/core-darwin-arm64": "1.2.211",
147
- "@swc/core-android-arm64": "1.2.211",
148
- "@swc/core-linux-arm64-musl": "1.2.211",
149
- "@swc/core-win32-arm64-msvc": "1.2.211",
150
- "@swc/core-android-arm-eabi": "1.2.211"
138
+ "@swc/core-win32-x64-msvc": "1.2.212",
139
+ "@swc/core-darwin-x64": "1.2.212",
140
+ "@swc/core-linux-x64-gnu": "1.2.212",
141
+ "@swc/core-linux-x64-musl": "1.2.212",
142
+ "@swc/core-freebsd-x64": "1.2.212",
143
+ "@swc/core-win32-ia32-msvc": "1.2.212",
144
+ "@swc/core-linux-arm64-gnu": "1.2.212",
145
+ "@swc/core-linux-arm-gnueabihf": "1.2.212",
146
+ "@swc/core-darwin-arm64": "1.2.212",
147
+ "@swc/core-android-arm64": "1.2.212",
148
+ "@swc/core-linux-arm64-musl": "1.2.212",
149
+ "@swc/core-win32-arm64-msvc": "1.2.212",
150
+ "@swc/core-android-arm-eabi": "1.2.212"
151
151
  }
152
152
  }