@swc/core 1.2.128 → 1.2.129

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/compat)** Transform `&&=` operator (#3225) ([2e5150d](https://github.com/swc-project/swc/commit/2e5150d2b714ba86bd228506eb0f008d9f5859e1))
9
+
10
+
11
+ - **(es/minifier)** Fix handling of inlined call to a hoisted function (#3223) ([78720c4](https://github.com/swc-project/swc/commit/78720c4c91530165b24585dab635f13eea9997a3))
12
+
13
+
14
+ - **(es/minifier)** Fix optimization of assignment expressions (#3231) ([12dd0a6](https://github.com/swc-project/swc/commit/12dd0a6c1fb6eeaf603f0f1a6da3a4231c8c47f6))
15
+
16
+
17
+ - **(es/minifier)** Fix bugs (#3238) ([74fd353](https://github.com/swc-project/swc/commit/74fd3530535813023b77739dd8f37a682269be67))
18
+
19
+
20
+ - **(es/parser)** Fix span of `ComputedPropName` (#3234) ([105cbc2](https://github.com/swc-project/swc/commit/105cbc2017e20a7c6a5d7dfdd7a9a4c396032be9))
21
+
22
+
23
+ - **(es/typescript)** Remove rogue `println` (#3244) ([282232c](https://github.com/swc-project/swc/commit/282232c9958309e70a18799449802ef5d7e88123))
24
+
25
+ ### Features
26
+
27
+
28
+
29
+ - **(plugin)** Don't serialize/deserialize needlessly (#3227) ([a2f2b5a](https://github.com/swc-project/swc/commit/a2f2b5ac8924ce635fc9547057da287864fe188a))
30
+
31
+
32
+ - **(plugin/macro)** Add safe API for plugins based on a proc-macro (#3240) ([432d5d3](https://github.com/swc-project/swc/commit/432d5d3fb7d870b08f8c16e4147c3f5421693d2b))
33
+
34
+ ## [1.2.128] - 2022-01-11
35
+
36
+ ### Bug Fixes
37
+
38
+
39
+
8
40
  - **(es/helpers)** Don't transpile `_typeof` helper (#3208) ([54353a6](https://github.com/swc-project/swc/commit/54353a6fb5ab53ed4762161ecdda1a3ec0d77c62))
9
41
 
10
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/core",
3
- "version": "1.2.128",
3
+ "version": "1.2.129",
4
4
  "description": "Super-fast alternative for babel",
5
5
  "homepage": "https://swc.rs",
6
6
  "main": "./index.js",
@@ -51,19 +51,19 @@
51
51
  "@node-rs/helper": "^1.0.0"
52
52
  },
53
53
  "optionalDependencies": {
54
- "@swc/core-win32-x64-msvc": "1.2.128",
55
- "@swc/core-darwin-x64": "1.2.128",
56
- "@swc/core-linux-x64-gnu": "1.2.128",
57
- "@swc/core-linux-x64-musl": "1.2.128",
58
- "@swc/core-freebsd-x64": "1.2.128",
59
- "@swc/core-win32-ia32-msvc": "1.2.128",
60
- "@swc/core-linux-arm64-gnu": "1.2.128",
61
- "@swc/core-linux-arm-gnueabihf": "1.2.128",
62
- "@swc/core-darwin-arm64": "1.2.128",
63
- "@swc/core-android-arm64": "1.2.128",
64
- "@swc/core-linux-arm64-musl": "1.2.128",
65
- "@swc/core-win32-arm64-msvc": "1.2.128",
66
- "@swc/core-android-arm-eabi": "1.2.128"
54
+ "@swc/core-win32-x64-msvc": "1.2.129",
55
+ "@swc/core-darwin-x64": "1.2.129",
56
+ "@swc/core-linux-x64-gnu": "1.2.129",
57
+ "@swc/core-linux-x64-musl": "1.2.129",
58
+ "@swc/core-freebsd-x64": "1.2.129",
59
+ "@swc/core-win32-ia32-msvc": "1.2.129",
60
+ "@swc/core-linux-arm64-gnu": "1.2.129",
61
+ "@swc/core-linux-arm-gnueabihf": "1.2.129",
62
+ "@swc/core-darwin-arm64": "1.2.129",
63
+ "@swc/core-android-arm64": "1.2.129",
64
+ "@swc/core-linux-arm64-musl": "1.2.129",
65
+ "@swc/core-win32-arm64-msvc": "1.2.129",
66
+ "@swc/core-android-arm-eabi": "1.2.129"
67
67
  },
68
68
  "types": "./index.d.ts",
69
69
  "scripts": {