@swc/core 1.2.192 → 1.2.194

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 +35 -0
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -5,6 +5,38 @@
5
5
 
6
6
 
7
7
 
8
+ - **(common)** Fix jemalloc (#4794) ([adf70f6](https://github.com/swc-project/swc/commit/adf70f6c0747e5a61d79897e11c70be0b41680d4))
9
+
10
+ ### Features
11
+
12
+
13
+
14
+ - **(html/minifier)** Improve script type compression (#4785) ([b5e481c](https://github.com/swc-project/swc/commit/b5e481c114bba00c4f69f8df2a6309cd46ba8962))
15
+
16
+
17
+ - **(html/minifier)** Sort classes (#4783) ([11aa6be](https://github.com/swc-project/swc/commit/11aa6bee9e1a0f31d2aec9b5111a4682e4c633ea))
18
+
19
+
20
+ - **(plugin)** Implement `SourceMap.span_to_*` (#4781) ([a937357](https://github.com/swc-project/swc/commit/a937357d47471222db4e62021ec507cd96597d9c))
21
+
22
+ ### Performance
23
+
24
+
25
+
26
+ - **(common)** Use `jemalloc` for linux (#4791) ([6f04e84](https://github.com/swc-project/swc/commit/6f04e846394df4bcf1e82748cd5df739b7df7a96))
27
+
28
+ ### Testing
29
+
30
+
31
+
32
+ - **(es)** Make execution tests faster (#4789) ([38a866a](https://github.com/swc-project/swc/commit/38a866a900ff979b070bc2152459d41d75f414df))
33
+
34
+ ## [1.2.192] - 2022-05-24
35
+
36
+ ### Bug Fixes
37
+
38
+
39
+
8
40
  - **(css/parser)** Allow `var()` call in color functions (#4713) ([07d31aa](https://github.com/swc-project/swc/commit/07d31aa50ab8420ee2e8e2751833385470337eae))
9
41
 
10
42
 
@@ -101,6 +133,9 @@
101
133
  - **(ci)** Fix CI (#4747) ([0f85f7b](https://github.com/swc-project/swc/commit/0f85f7b9de970648509aff8ac466fe25ab004cdb))
102
134
 
103
135
 
136
+ - **(ci)** Fix CI (#4779) ([c31b0a3](https://github.com/swc-project/swc/commit/c31b0a38ea16b784489bb4125403c1625d3895f1))
137
+
138
+
104
139
  - **(es/minifier)** Add `#[doc(hidden)]` (#4751) ([22bf5f0](https://github.com/swc-project/swc/commit/22bf5f014e35ac4994d70660ae7e25cfb4659caf))
105
140
 
106
141
  ### Performance
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/core",
3
- "version": "1.2.192",
3
+ "version": "1.2.194",
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.192",
139
- "@swc/core-darwin-x64": "1.2.192",
140
- "@swc/core-linux-x64-gnu": "1.2.192",
141
- "@swc/core-linux-x64-musl": "1.2.192",
142
- "@swc/core-freebsd-x64": "1.2.192",
143
- "@swc/core-win32-ia32-msvc": "1.2.192",
144
- "@swc/core-linux-arm64-gnu": "1.2.192",
145
- "@swc/core-linux-arm-gnueabihf": "1.2.192",
146
- "@swc/core-darwin-arm64": "1.2.192",
147
- "@swc/core-android-arm64": "1.2.192",
148
- "@swc/core-linux-arm64-musl": "1.2.192",
149
- "@swc/core-win32-arm64-msvc": "1.2.192",
150
- "@swc/core-android-arm-eabi": "1.2.192"
138
+ "@swc/core-win32-x64-msvc": "1.2.194",
139
+ "@swc/core-darwin-x64": "1.2.194",
140
+ "@swc/core-linux-x64-gnu": "1.2.194",
141
+ "@swc/core-linux-x64-musl": "1.2.194",
142
+ "@swc/core-freebsd-x64": "1.2.194",
143
+ "@swc/core-win32-ia32-msvc": "1.2.194",
144
+ "@swc/core-linux-arm64-gnu": "1.2.194",
145
+ "@swc/core-linux-arm-gnueabihf": "1.2.194",
146
+ "@swc/core-darwin-arm64": "1.2.194",
147
+ "@swc/core-android-arm64": "1.2.194",
148
+ "@swc/core-linux-arm64-musl": "1.2.194",
149
+ "@swc/core-win32-arm64-msvc": "1.2.194",
150
+ "@swc/core-android-arm-eabi": "1.2.194"
151
151
  }
152
152
  }