@swc/core 1.2.235 → 1.2.237
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.
- package/CHANGELOG.md +17 -5
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
## [unreleased]
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
- **(es/
|
|
8
|
+
- **(es/plugin/runner)** Provide guest memory allocator for the sourcemap (#5517) ([3bdb39c](https://github.com/swc-project/swc/commit/3bdb39c0eea3c8c5473ff6034be7f7f44d9ba9e7))
|
|
9
9
|
|
|
10
|
-
### Refactor
|
|
11
10
|
|
|
11
|
+
- **(es/plugin/runner)** Revert wasmer@3 (#5521) ([4a9b1dd](https://github.com/swc-project/swc/commit/4a9b1dde1aaf84e233a9d1a59a1de539706e652b))
|
|
12
12
|
|
|
13
|
+
### Features
|
|
13
14
|
|
|
14
|
-
- **(bindings)** Merge cargo workspace (#5511) ([bbf9e2f](https://github.com/swc-project/swc/commit/bbf9e2f24363094819c7d0aa390122db85645f39))
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
|
|
17
|
+
- **(bindings)** Update `swc_core` (#5518) ([b37b640](https://github.com/swc-project/swc/commit/b37b64013354d621b47bddca6e3bf6294f29b11d))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
- **(bindings)** Bump `swc_core` (#5525) ([ac60c0a](https://github.com/swc-project/swc/commit/ac60c0a2a01009a29ab71e7805eb8ee2aad40b34))
|
|
21
|
+
|
|
22
|
+
## [1.2.235] - 2022-08-16
|
|
17
23
|
|
|
18
24
|
### Bug Fixes
|
|
19
25
|
|
|
@@ -31,6 +37,9 @@
|
|
|
31
37
|
- **(bindings)** Update `swc_core` (#5510) ([b9f88ff](https://github.com/swc-project/swc/commit/b9f88ff7203e0143de78f43ec0a4770907fa42da))
|
|
32
38
|
|
|
33
39
|
|
|
40
|
+
- **(es/compat)** Fix syntax context of transpiled class methods (#5498) ([b9933b1](https://github.com/swc-project/swc/commit/b9933b159a208a0bccbb9bf7cd9383b6a9be0e51))
|
|
41
|
+
|
|
42
|
+
|
|
34
43
|
- **(es/plugin)** Update `wasmer` to 3 (#5456) ([92f006c](https://github.com/swc-project/swc/commit/92f006c9a033bf4a49b48e842fd0668a96a13c61))
|
|
35
44
|
|
|
36
45
|
|
|
@@ -42,6 +51,9 @@
|
|
|
42
51
|
|
|
43
52
|
- **(bindings)** Use separate workspace for bindings (#5506) ([496346a](https://github.com/swc-project/swc/commit/496346ac04483581c29444e205392c479e1f8c4b))
|
|
44
53
|
|
|
54
|
+
|
|
55
|
+
- **(bindings)** Merge cargo workspace (#5511) ([bbf9e2f](https://github.com/swc-project/swc/commit/bbf9e2f24363094819c7d0aa390122db85645f39))
|
|
56
|
+
|
|
45
57
|
### Build
|
|
46
58
|
|
|
47
59
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc/core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.237",
|
|
4
4
|
"description": "Super-fast alternative for babel",
|
|
5
5
|
"homepage": "https://swc.rs",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -138,19 +138,19 @@
|
|
|
138
138
|
"url": "https://opencollective.com/swc"
|
|
139
139
|
},
|
|
140
140
|
"optionalDependencies": {
|
|
141
|
-
"@swc/core-win32-x64-msvc": "1.2.
|
|
142
|
-
"@swc/core-darwin-x64": "1.2.
|
|
143
|
-
"@swc/core-linux-x64-gnu": "1.2.
|
|
144
|
-
"@swc/core-linux-x64-musl": "1.2.
|
|
145
|
-
"@swc/core-freebsd-x64": "1.2.
|
|
146
|
-
"@swc/core-win32-ia32-msvc": "1.2.
|
|
147
|
-
"@swc/core-linux-arm64-gnu": "1.2.
|
|
148
|
-
"@swc/core-linux-arm-gnueabihf": "1.2.
|
|
149
|
-
"@swc/core-darwin-arm64": "1.2.
|
|
150
|
-
"@swc/core-android-arm64": "1.2.
|
|
151
|
-
"@swc/core-linux-arm64-musl": "1.2.
|
|
152
|
-
"@swc/core-win32-arm64-msvc": "1.2.
|
|
153
|
-
"@swc/core-android-arm-eabi": "1.2.
|
|
141
|
+
"@swc/core-win32-x64-msvc": "1.2.237",
|
|
142
|
+
"@swc/core-darwin-x64": "1.2.237",
|
|
143
|
+
"@swc/core-linux-x64-gnu": "1.2.237",
|
|
144
|
+
"@swc/core-linux-x64-musl": "1.2.237",
|
|
145
|
+
"@swc/core-freebsd-x64": "1.2.237",
|
|
146
|
+
"@swc/core-win32-ia32-msvc": "1.2.237",
|
|
147
|
+
"@swc/core-linux-arm64-gnu": "1.2.237",
|
|
148
|
+
"@swc/core-linux-arm-gnueabihf": "1.2.237",
|
|
149
|
+
"@swc/core-darwin-arm64": "1.2.237",
|
|
150
|
+
"@swc/core-android-arm64": "1.2.237",
|
|
151
|
+
"@swc/core-linux-arm64-musl": "1.2.237",
|
|
152
|
+
"@swc/core-win32-arm64-msvc": "1.2.237",
|
|
153
|
+
"@swc/core-android-arm-eabi": "1.2.237"
|
|
154
154
|
},
|
|
155
155
|
"files": [
|
|
156
156
|
"CHANGELOG.md",
|