@swc/core 1.13.21 → 1.14.0-nightly-20251029.2

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/Visitor.js +0 -8
  2. package/package.json +11 -11
package/Visitor.js CHANGED
@@ -1192,14 +1192,6 @@ class Visitor {
1192
1192
  if (!n)
1193
1193
  return n;
1194
1194
  switch (n.type) {
1195
- case "BooleanLiteral":
1196
- return this.visitBooleanLiteral(n);
1197
- case "NullLiteral":
1198
- return this.visitNullLiteral(n);
1199
- case "NumericLiteral":
1200
- return this.visitNumericLiteral(n);
1201
- case "JSXText":
1202
- return this.visitJSXText(n);
1203
1195
  case "StringLiteral":
1204
1196
  return this.visitStringLiteral(n);
1205
1197
  case "JSXElement":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swc/core",
3
- "version": "1.13.21",
3
+ "version": "1.14.0-nightly-20251029.2",
4
4
  "description": "Super-fast alternative for babel",
5
5
  "homepage": "https://swc.rs",
6
6
  "main": "./index.js",
@@ -100,15 +100,15 @@
100
100
  "typescript": "^5.3.3"
101
101
  },
102
102
  "optionalDependencies": {
103
- "@swc/core-darwin-x64": "1.13.21",
104
- "@swc/core-win32-x64-msvc": "1.13.21",
105
- "@swc/core-linux-x64-gnu": "1.13.21",
106
- "@swc/core-linux-x64-musl": "1.13.21",
107
- "@swc/core-win32-ia32-msvc": "1.13.21",
108
- "@swc/core-linux-arm-gnueabihf": "1.13.21",
109
- "@swc/core-darwin-arm64": "1.13.21",
110
- "@swc/core-linux-arm64-gnu": "1.13.21",
111
- "@swc/core-linux-arm64-musl": "1.13.21",
112
- "@swc/core-win32-arm64-msvc": "1.13.21"
103
+ "@swc/core-darwin-x64": "1.14.0-nightly-20251029.2",
104
+ "@swc/core-win32-x64-msvc": "1.14.0-nightly-20251029.2",
105
+ "@swc/core-linux-x64-gnu": "1.14.0-nightly-20251029.2",
106
+ "@swc/core-linux-x64-musl": "1.14.0-nightly-20251029.2",
107
+ "@swc/core-win32-ia32-msvc": "1.14.0-nightly-20251029.2",
108
+ "@swc/core-linux-arm-gnueabihf": "1.14.0-nightly-20251029.2",
109
+ "@swc/core-darwin-arm64": "1.14.0-nightly-20251029.2",
110
+ "@swc/core-linux-arm64-gnu": "1.14.0-nightly-20251029.2",
111
+ "@swc/core-linux-arm64-musl": "1.14.0-nightly-20251029.2",
112
+ "@swc/core-win32-arm64-msvc": "1.14.0-nightly-20251029.2"
113
113
  }
114
114
  }