uncomment-cli 2.10.2 → 2.10.3

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/install.js +1 -2
  2. package/package.json +1 -1
package/install.js CHANGED
@@ -14,8 +14,7 @@ function getPlatformTriple() {
14
14
 
15
15
  if (type === "Windows_NT") {
16
16
  if (arch === "x64") return "x86_64-pc-windows-gnu";
17
- if (arch === "ia32") return "i686-pc-windows-gnu";
18
- throw new Error(`Unsupported Windows architecture: ${arch}`);
17
+ if (arch === "ia32") throw new Error("32-bit Windows is not supported");
19
18
  }
20
19
 
21
20
  if (type === "Linux") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uncomment-cli",
3
- "version": "2.10.2",
3
+ "version": "2.10.3",
4
4
  "description": "A fast Rust-based CLI tool for removing comments from source code",
5
5
  "main": "index.js",
6
6
  "bin": {