@swc/core 1.3.87 → 1.3.88
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 +14 -0
- package/package.json +16 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
## [unreleased]
|
|
3
3
|
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
- **(es/config)** Accept `jsc.experimental.keepImportAssertions` (#7995) ([4d777ee](https://github.com/swc-project/swc/commit/4d777ee270183ba375b68c003e61692af6d571c3))
|
|
9
|
+
|
|
10
|
+
### Refactor
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
- **(bindingins)** Create `@swc/counter` (#7991) ([0acbb5f](https://github.com/swc-project/swc/commit/0acbb5f78daa52cf505e077993a694eb966368af))
|
|
15
|
+
|
|
16
|
+
## [1.3.87] - 2023-09-22
|
|
17
|
+
|
|
4
18
|
### Bug Fixes
|
|
5
19
|
|
|
6
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.88",
|
|
4
4
|
"description": "Super-fast alternative for babel",
|
|
5
5
|
"homepage": "https://swc.rs",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -66,6 +66,9 @@
|
|
|
66
66
|
"*.rs": [
|
|
67
67
|
"rustfmt --"
|
|
68
68
|
],
|
|
69
|
+
"*.json": [
|
|
70
|
+
"prettier --write"
|
|
71
|
+
],
|
|
69
72
|
"!(**/tests/**/*)*.js": [
|
|
70
73
|
"prettier --write"
|
|
71
74
|
],
|
|
@@ -145,16 +148,16 @@
|
|
|
145
148
|
"url": "https://opencollective.com/swc"
|
|
146
149
|
},
|
|
147
150
|
"optionalDependencies": {
|
|
148
|
-
"@swc/core-win32-x64-msvc": "1.3.
|
|
149
|
-
"@swc/core-darwin-x64": "1.3.
|
|
150
|
-
"@swc/core-linux-x64-gnu": "1.3.
|
|
151
|
-
"@swc/core-linux-x64-musl": "1.3.
|
|
152
|
-
"@swc/core-win32-ia32-msvc": "1.3.
|
|
153
|
-
"@swc/core-linux-arm64-gnu": "1.3.
|
|
154
|
-
"@swc/core-linux-arm-gnueabihf": "1.3.
|
|
155
|
-
"@swc/core-darwin-arm64": "1.3.
|
|
156
|
-
"@swc/core-linux-arm64-musl": "1.3.
|
|
157
|
-
"@swc/core-win32-arm64-msvc": "1.3.
|
|
151
|
+
"@swc/core-win32-x64-msvc": "1.3.88",
|
|
152
|
+
"@swc/core-darwin-x64": "1.3.88",
|
|
153
|
+
"@swc/core-linux-x64-gnu": "1.3.88",
|
|
154
|
+
"@swc/core-linux-x64-musl": "1.3.88",
|
|
155
|
+
"@swc/core-win32-ia32-msvc": "1.3.88",
|
|
156
|
+
"@swc/core-linux-arm64-gnu": "1.3.88",
|
|
157
|
+
"@swc/core-linux-arm-gnueabihf": "1.3.88",
|
|
158
|
+
"@swc/core-darwin-arm64": "1.3.88",
|
|
159
|
+
"@swc/core-linux-arm64-musl": "1.3.88",
|
|
160
|
+
"@swc/core-win32-arm64-msvc": "1.3.88"
|
|
158
161
|
},
|
|
159
162
|
"files": [
|
|
160
163
|
"CHANGELOG.md",
|
|
@@ -178,6 +181,7 @@
|
|
|
178
181
|
],
|
|
179
182
|
"packageManager": "yarn@3.5.0",
|
|
180
183
|
"dependencies": {
|
|
181
|
-
"@swc/
|
|
184
|
+
"@swc/counter": "^0.1.1",
|
|
185
|
+
"@swc/types": "^0.1.5"
|
|
182
186
|
}
|
|
183
187
|
}
|