create-huenei-frontend 0.1.3 → 0.1.4

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/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -36,7 +36,7 @@ function installPnpm() {
36
36
  // 2. Fallback por sistema operativo
37
37
  if (platform === "win32") {
38
38
  // Windows sin corepack → PowerShell installer
39
- execSync('powershell -NoProfile -ExecutionPolicy Bypass -Command "iwr https://get.pnpm.io/install.ps1 -useb | iex"', { stdio: "inherit" });
39
+ execSync('powershell -NoProfile -ExecutionPolicy Bypass -Command "Invoke-WebRequest https://get.pnpm.io/install.ps1 -UseBasicParsing | Invoke-Expression"', { stdio: "inherit" });
40
40
  return;
41
41
  }
42
42
  // macOS / Linux → shell script
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-huenei-frontend",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-huenei-frontend": "./bin/create-huenei-frontend.js"