@swc/core 1.2.176 → 1.2.177

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 (3) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +15 -15
  3. package/run_swcx.js +0 -0
package/CHANGELOG.md CHANGED
@@ -5,6 +5,38 @@
5
5
 
6
6
 
7
7
 
8
+ - **(html/parser)** Fix a bug of unwrapping element without parent (#4505) ([597c0c6](https://github.com/swc-project/swc/commit/597c0c672a9111b1a0b6e7219edb577866252343))
9
+
10
+
11
+ - **(node)** Fix tls allocation issue (#4514) ([3d5c0fa](https://github.com/swc-project/swc/commit/3d5c0fa966f96c7e463c5de8819c4c8eea65f3aa))
12
+
13
+ ### Features
14
+
15
+
16
+
17
+ - **(es/parser)** Reject accessors named `constructor` (#4520) ([0e0ded1](https://github.com/swc-project/swc/commit/0e0ded121cbf0e43bc061030c8933d4079a898b2))
18
+
19
+
20
+ - **(plugin)** Expose `Pos` (#4516) ([c0432e4](https://github.com/swc-project/swc/commit/c0432e46df1fa15d8819859211913796e59d9192))
21
+
22
+ ### Miscellaneous Tasks
23
+
24
+
25
+
26
+ - **(repo)** Fix lints (#4519) ([33f58fa](https://github.com/swc-project/swc/commit/33f58faa0bb4f87ee13e38a704ca929efc21430b))
27
+
28
+ ### Testing
29
+
30
+
31
+
32
+ - **(html/parser)** Add tests (#4507) ([202a6e4](https://github.com/swc-project/swc/commit/202a6e4a0100e5ddc3a3c920b447aca803fffbae))
33
+
34
+ ## [1.2.176] - 2022-05-04
35
+
36
+ ### Bug Fixes
37
+
38
+
39
+
8
40
  - **(es/compat)** Revert a wrong patch about private properties ([97e0e27](https://github.com/swc-project/swc/commit/97e0e271d57ae2c2f6a4d8a09032885ca9a27be9))
9
41
 
10
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/core",
3
- "version": "1.2.176",
3
+ "version": "1.2.177",
4
4
  "description": "Super-fast alternative for babel",
5
5
  "homepage": "https://swc.rs",
6
6
  "main": "./index.js",
@@ -82,7 +82,7 @@
82
82
  "@babel/preset-react": "^7.13.13",
83
83
  "@babel/preset-typescript": "^7.13.0",
84
84
  "@babel/types": "^7.14.0",
85
- "@napi-rs/cli": "^2.4.5",
85
+ "@napi-rs/cli": "^2.7.0",
86
86
  "@swc/helpers": "^0.3.8",
87
87
  "@taplo/cli": "^0.3.2",
88
88
  "@types/jest": "^26.0.23",
@@ -121,18 +121,18 @@
121
121
  "url": "https://opencollective.com/swc"
122
122
  },
123
123
  "optionalDependencies": {
124
- "@swc/core-win32-x64-msvc": "1.2.176",
125
- "@swc/core-darwin-x64": "1.2.176",
126
- "@swc/core-linux-x64-gnu": "1.2.176",
127
- "@swc/core-linux-x64-musl": "1.2.176",
128
- "@swc/core-freebsd-x64": "1.2.176",
129
- "@swc/core-win32-ia32-msvc": "1.2.176",
130
- "@swc/core-linux-arm64-gnu": "1.2.176",
131
- "@swc/core-linux-arm-gnueabihf": "1.2.176",
132
- "@swc/core-darwin-arm64": "1.2.176",
133
- "@swc/core-android-arm64": "1.2.176",
134
- "@swc/core-linux-arm64-musl": "1.2.176",
135
- "@swc/core-win32-arm64-msvc": "1.2.176",
136
- "@swc/core-android-arm-eabi": "1.2.176"
124
+ "@swc/core-win32-x64-msvc": "1.2.177",
125
+ "@swc/core-darwin-x64": "1.2.177",
126
+ "@swc/core-linux-x64-gnu": "1.2.177",
127
+ "@swc/core-linux-x64-musl": "1.2.177",
128
+ "@swc/core-freebsd-x64": "1.2.177",
129
+ "@swc/core-win32-ia32-msvc": "1.2.177",
130
+ "@swc/core-linux-arm64-gnu": "1.2.177",
131
+ "@swc/core-linux-arm-gnueabihf": "1.2.177",
132
+ "@swc/core-darwin-arm64": "1.2.177",
133
+ "@swc/core-android-arm64": "1.2.177",
134
+ "@swc/core-linux-arm64-musl": "1.2.177",
135
+ "@swc/core-win32-arm64-msvc": "1.2.177",
136
+ "@swc/core-android-arm-eabi": "1.2.177"
137
137
  }
138
138
  }
package/run_swcx.js CHANGED
File without changes