@swc/core 1.2.162 → 1.2.163

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 +50 -0
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -5,6 +5,56 @@
5
5
 
6
6
 
7
7
 
8
+ - **(cli)** Update plugin template (#4222) ([69cb512](https://github.com/swc-project/swc/commit/69cb512e571de1f8b245fdc538cf9a09c51823f2))
9
+
10
+
11
+ - **(css/prefixer)** Fix flex box (#4212) ([75b0ed5](https://github.com/swc-project/swc/commit/75b0ed55f6c352ab2cd918ac746ceef99fa0f124))
12
+
13
+
14
+ - **(es/preset-env)** Change order of passes ([7eea95b](https://github.com/swc-project/swc/commit/7eea95be7a08d27d999e9f8a698077bf08b12d12))
15
+
16
+ ### Features
17
+
18
+
19
+
20
+ - **(css/ast)** Derive more traits (#4220) ([def2826](https://github.com/swc-project/swc/commit/def2826029fcc405ac73283b3559415105266ad2))
21
+
22
+
23
+ - **(es/ast)** Add `raw` to `BigInt` (#4218) ([e91f271](https://github.com/swc-project/swc/commit/e91f2718730b87d7318f45ecfe4ac0c03a52c6fd))
24
+
25
+
26
+ - **(es/compat)** Support more regex expressions (#4205) ([b793aa0](https://github.com/swc-project/swc/commit/b793aa020095d797a76e2c19f42ab5822ee2ef03))
27
+
28
+
29
+ - **(plugin)** Implement plugin api for comments (#4229) ([6ea66cf](https://github.com/swc-project/swc/commit/6ea66cf001754bb88604a824a2290a3360a798b8))
30
+
31
+ ### Performance
32
+
33
+
34
+
35
+ - **(es/minifier)** Add fast-path for sequences pass (#4217) ([688f653](https://github.com/swc-project/swc/commit/688f653323cc9480f9c262040e0bc3861a2ffff9))
36
+
37
+
38
+ - **(es/parser)** Improve performance by using `#[cold]` (#4215) ([1645562](https://github.com/swc-project/swc/commit/164556290b03cd530ad5158947cd28310c18fb12))
39
+
40
+ ### Refactor
41
+
42
+
43
+
44
+ - **(css/ast)** Union all at-rules to one at-rule in AST (#4189) ([6696a93](https://github.com/swc-project/swc/commit/6696a93b5c7d005bb35be97e3f3ec52c1fe235aa))
45
+
46
+ ### Testing
47
+
48
+
49
+
50
+ - **(es)** Add a test to ensure that an issue is not a bug of swc (#4227) ([bbbaf15](https://github.com/swc-project/swc/commit/bbbaf15bbae204030d7c781ca4155987d324c16a))
51
+
52
+ ## [1.2.162] - 2022-03-31
53
+
54
+ ### Bug Fixes
55
+
56
+
57
+
8
58
  - **(es/compat)** Handle spreads of string literials (#4191) ([4f5c5cf](https://github.com/swc-project/swc/commit/4f5c5cf8429bb6c10b48aefdc3440b563f21d836))
9
59
 
10
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/core",
3
- "version": "1.2.162",
3
+ "version": "1.2.163",
4
4
  "description": "Super-fast alternative for babel",
5
5
  "homepage": "https://swc.rs",
6
6
  "main": "./index.js",
@@ -121,18 +121,18 @@
121
121
  "url": "https://opencollective.com/swc"
122
122
  },
123
123
  "optionalDependencies": {
124
- "@swc/core-win32-x64-msvc": "1.2.162",
125
- "@swc/core-darwin-x64": "1.2.162",
126
- "@swc/core-linux-x64-gnu": "1.2.162",
127
- "@swc/core-linux-x64-musl": "1.2.162",
128
- "@swc/core-freebsd-x64": "1.2.162",
129
- "@swc/core-win32-ia32-msvc": "1.2.162",
130
- "@swc/core-linux-arm64-gnu": "1.2.162",
131
- "@swc/core-linux-arm-gnueabihf": "1.2.162",
132
- "@swc/core-darwin-arm64": "1.2.162",
133
- "@swc/core-android-arm64": "1.2.162",
134
- "@swc/core-linux-arm64-musl": "1.2.162",
135
- "@swc/core-win32-arm64-msvc": "1.2.162",
136
- "@swc/core-android-arm-eabi": "1.2.162"
124
+ "@swc/core-win32-x64-msvc": "1.2.163",
125
+ "@swc/core-darwin-x64": "1.2.163",
126
+ "@swc/core-linux-x64-gnu": "1.2.163",
127
+ "@swc/core-linux-x64-musl": "1.2.163",
128
+ "@swc/core-freebsd-x64": "1.2.163",
129
+ "@swc/core-win32-ia32-msvc": "1.2.163",
130
+ "@swc/core-linux-arm64-gnu": "1.2.163",
131
+ "@swc/core-linux-arm-gnueabihf": "1.2.163",
132
+ "@swc/core-darwin-arm64": "1.2.163",
133
+ "@swc/core-android-arm64": "1.2.163",
134
+ "@swc/core-linux-arm64-musl": "1.2.163",
135
+ "@swc/core-win32-arm64-msvc": "1.2.163",
136
+ "@swc/core-android-arm-eabi": "1.2.163"
137
137
  }
138
138
  }