@swc/core 1.2.164 → 1.2.165

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 +47 -0
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -5,6 +5,53 @@
5
5
 
6
6
 
7
7
 
8
+ - **(css/prefixer)** FIx a bug related to `writing-mode` (#4278) ([7f38e06](https://github.com/swc-project/swc/commit/7f38e06e0209216200182555c7c7ddb11499e45d))
9
+
10
+
11
+ - **(es/minifier)** Fix handling of `eval` (#4273) ([c961371](https://github.com/swc-project/swc/commit/c961371c312f85553ab17eb1b67f0721861bcbf5))
12
+
13
+
14
+ - **(es/module)** Support top-level await in dynamic imports (#4277) ([720244f](https://github.com/swc-project/swc/commit/720244fff9f3fcf5cb0ed4bcfc6e2a5795ad3be1))
15
+
16
+
17
+ - **(es/optimization)** Don't create invalid sequence expressions (#4285) ([4868c73](https://github.com/swc-project/swc/commit/4868c73d5bc5eb3ffbbc2fd31c485e3e22795550))
18
+
19
+ ### Features
20
+
21
+
22
+
23
+ - **(html)** Add raw fields (#4281) ([ee108af](https://github.com/swc-project/swc/commit/ee108af3d0bf81cfa101d8b52ee4d072705b04f4))
24
+
25
+
26
+ - **(plugin)** Implement `Copy` and `Clone` for the comment proxy (#4280) ([3c4e520](https://github.com/swc-project/swc/commit/3c4e5204ecb51dd67c73ae5556c886b303891a23))
27
+
28
+
29
+ - **(plugin)** Make more types serializable (#4289) ([281db2c](https://github.com/swc-project/swc/commit/281db2cc4f9af29577095038b37af5855a1e5aa5))
30
+
31
+
32
+ - **(plugin/runner)** Allow fs access from wasi plugin (#4279) ([fc3a2d0](https://github.com/swc-project/swc/commit/fc3a2d0cf9a4767076dda3fac929b24a50144730))
33
+
34
+ ### Miscellaneous Tasks
35
+
36
+
37
+
38
+ - **(plugin)** Align version of `swc_common` to include dummy comment api (#4270) ([fad652f](https://github.com/swc-project/swc/commit/fad652f879d12a1015b4500f0a512232c9433c2d))
39
+
40
+ ### Refactor
41
+
42
+
43
+
44
+ - **(es/minifier)** Merge code for multi-replacer (#4269) ([434dcf4](https://github.com/swc-project/swc/commit/434dcf4af786a7d31827f7b078dea40efc35b64f))
45
+
46
+
47
+ - **(plugin/api)** Expand the proxy crate (#4290) ([cf7ca50](https://github.com/swc-project/swc/commit/cf7ca5076a7f0b33f3587fb34f2eddcb2d316e5d))
48
+
49
+ ## [1.2.164] - 2022-04-07
50
+
51
+ ### Bug Fixes
52
+
53
+
54
+
8
55
  - **(es/codegen)** Commit `;` before a template literal (#4252) ([8cd903b](https://github.com/swc-project/swc/commit/8cd903b3b006b823cc5d3a61d40a1311fc97276c))
9
56
 
10
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/core",
3
- "version": "1.2.164",
3
+ "version": "1.2.165",
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.164",
125
- "@swc/core-darwin-x64": "1.2.164",
126
- "@swc/core-linux-x64-gnu": "1.2.164",
127
- "@swc/core-linux-x64-musl": "1.2.164",
128
- "@swc/core-freebsd-x64": "1.2.164",
129
- "@swc/core-win32-ia32-msvc": "1.2.164",
130
- "@swc/core-linux-arm64-gnu": "1.2.164",
131
- "@swc/core-linux-arm-gnueabihf": "1.2.164",
132
- "@swc/core-darwin-arm64": "1.2.164",
133
- "@swc/core-android-arm64": "1.2.164",
134
- "@swc/core-linux-arm64-musl": "1.2.164",
135
- "@swc/core-win32-arm64-msvc": "1.2.164",
136
- "@swc/core-android-arm-eabi": "1.2.164"
124
+ "@swc/core-win32-x64-msvc": "1.2.165",
125
+ "@swc/core-darwin-x64": "1.2.165",
126
+ "@swc/core-linux-x64-gnu": "1.2.165",
127
+ "@swc/core-linux-x64-musl": "1.2.165",
128
+ "@swc/core-freebsd-x64": "1.2.165",
129
+ "@swc/core-win32-ia32-msvc": "1.2.165",
130
+ "@swc/core-linux-arm64-gnu": "1.2.165",
131
+ "@swc/core-linux-arm-gnueabihf": "1.2.165",
132
+ "@swc/core-darwin-arm64": "1.2.165",
133
+ "@swc/core-android-arm64": "1.2.165",
134
+ "@swc/core-linux-arm64-musl": "1.2.165",
135
+ "@swc/core-win32-arm64-msvc": "1.2.165",
136
+ "@swc/core-android-arm-eabi": "1.2.165"
137
137
  }
138
138
  }