@swc/core 1.2.137 → 1.2.138
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/.kodiak.toml +14 -0
- package/CHANGELOG.md +35 -0
- package/package.json +16 -17
package/.kodiak.toml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# .kodiak.toml
|
|
2
|
+
version = 1
|
|
3
|
+
|
|
4
|
+
# We can't use automerge because of version bumping.
|
|
5
|
+
# But to make merging faster, we auto-update PRs.
|
|
6
|
+
[merge]
|
|
7
|
+
do_not_merge = true
|
|
8
|
+
|
|
9
|
+
[update]
|
|
10
|
+
autoupdate_label = "S-approved"
|
|
11
|
+
|
|
12
|
+
# I want to use auto-merge feature of github
|
|
13
|
+
[approve]
|
|
14
|
+
auto_approve_usernames = ["kdy1"]
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,41 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
- **(es/minifier)** Make `sequences` less aggressive (#3480) ([292add7](https://github.com/swc-project/swc/commit/292add7d26a079a1da09ff94444124faea8e39fc))
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
- **(css)** Add support for `@property` at-rule (#3470) ([fd5668c](https://github.com/swc-project/swc/commit/fd5668c32fa002698e387df6bc6a927c0d562e06))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
- **(css/ast)** Add types for `@counter-style` at-rule (#3469) ([e6f4fbf](https://github.com/swc-project/swc/commit/e6f4fbf056767344776afbb6bd3b2f5dfe83dcf3))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
- **(css/ast)** Add types for all dimensions (#3477) ([dc939c6](https://github.com/swc-project/swc/commit/dc939c65afa3b3b09101128f5801f532170bdea2))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
- **(es/parser)** Disallow assignment to optional chaining expressions (#3483) ([26565b1](https://github.com/swc-project/swc/commit/26565b1ae9c0ab93b425c97fc40aaf49576e4b90))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
- **(plugin)** Support global `HANDLER` in the plugin context (#3478) ([d473a65](https://github.com/swc-project/swc/commit/d473a6597653e59fc485ffb9cb116d23b4b55e70))
|
|
27
|
+
|
|
28
|
+
### Miscellaneous Tasks
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
- **(es)** Fix clippy warnings (#3482) ([8bf5cf4](https://github.com/swc-project/swc/commit/8bf5cf4d030ec5ab615924b938c8c027c600e3e1))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
- **(repo)** Configure kodiak (#3485) ([cf8aa05](https://github.com/swc-project/swc/commit/cf8aa05d9ce5b60936c53c42d70ca934a09c373e))
|
|
36
|
+
|
|
37
|
+
## [1.2.137] - 2022-02-07
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
8
43
|
- **(css)** Fix parsing of `@page` at-rule (#3356) ([4853821](https://github.com/swc-project/swc/commit/4853821d004f366c89c1b9122786e26ff923df05))
|
|
9
44
|
|
|
10
45
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc/core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.138",
|
|
4
4
|
"description": "Super-fast alternative for babel",
|
|
5
5
|
"homepage": "https://swc.rs",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -47,23 +47,21 @@
|
|
|
47
47
|
"registry": "https://registry.npmjs.org/",
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
|
-
"dependencies": {
|
|
51
|
-
"ts-node": "^10.4.0"
|
|
52
|
-
},
|
|
50
|
+
"dependencies": {},
|
|
53
51
|
"optionalDependencies": {
|
|
54
|
-
"@swc/core-win32-x64-msvc": "1.2.
|
|
55
|
-
"@swc/core-darwin-x64": "1.2.
|
|
56
|
-
"@swc/core-linux-x64-gnu": "1.2.
|
|
57
|
-
"@swc/core-linux-x64-musl": "1.2.
|
|
58
|
-
"@swc/core-freebsd-x64": "1.2.
|
|
59
|
-
"@swc/core-win32-ia32-msvc": "1.2.
|
|
60
|
-
"@swc/core-linux-arm64-gnu": "1.2.
|
|
61
|
-
"@swc/core-linux-arm-gnueabihf": "1.2.
|
|
62
|
-
"@swc/core-darwin-arm64": "1.2.
|
|
63
|
-
"@swc/core-android-arm64": "1.2.
|
|
64
|
-
"@swc/core-linux-arm64-musl": "1.2.
|
|
65
|
-
"@swc/core-win32-arm64-msvc": "1.2.
|
|
66
|
-
"@swc/core-android-arm-eabi": "1.2.
|
|
52
|
+
"@swc/core-win32-x64-msvc": "1.2.138",
|
|
53
|
+
"@swc/core-darwin-x64": "1.2.138",
|
|
54
|
+
"@swc/core-linux-x64-gnu": "1.2.138",
|
|
55
|
+
"@swc/core-linux-x64-musl": "1.2.138",
|
|
56
|
+
"@swc/core-freebsd-x64": "1.2.138",
|
|
57
|
+
"@swc/core-win32-ia32-msvc": "1.2.138",
|
|
58
|
+
"@swc/core-linux-arm64-gnu": "1.2.138",
|
|
59
|
+
"@swc/core-linux-arm-gnueabihf": "1.2.138",
|
|
60
|
+
"@swc/core-darwin-arm64": "1.2.138",
|
|
61
|
+
"@swc/core-android-arm64": "1.2.138",
|
|
62
|
+
"@swc/core-linux-arm64-musl": "1.2.138",
|
|
63
|
+
"@swc/core-win32-arm64-msvc": "1.2.138",
|
|
64
|
+
"@swc/core-android-arm-eabi": "1.2.138"
|
|
67
65
|
},
|
|
68
66
|
"types": "./index.d.ts",
|
|
69
67
|
"scripts": {
|
|
@@ -114,6 +112,7 @@
|
|
|
114
112
|
"source-map-support": "^0.5.19",
|
|
115
113
|
"sourcemap-validator": "^2.1.0",
|
|
116
114
|
"terser": "^5.7.1",
|
|
115
|
+
"ts-node": "^10.5.0",
|
|
117
116
|
"typescript": "^4.5.2"
|
|
118
117
|
},
|
|
119
118
|
"funding": {
|