create-cookbook 1.0.0-beta.101 → 1.0.0-beta.103

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/__VERSION__.mjs CHANGED
@@ -1 +1 @@
1
- export const __VERSION__ = "1.0.0-beta.101";
1
+ export const __VERSION__ = "1.0.0-beta.103";
package/index.mjs CHANGED
@@ -126,7 +126,7 @@ const color = gradient(["cyan", "#2d9b87"]);
126
126
  await move(execPath, join(targetPath, execName), { overwrite: true });
127
127
 
128
128
  try {
129
- execFileSync("powershell", [
129
+ execFileSync("powershell.exe", [
130
130
  "-Command",
131
131
  `[System.Environment]::SetEnvironmentVariable('PATH', $env:PATH + ';${targetPath}', 'User')`
132
132
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cookbook",
3
- "version": "1.0.0-beta.101",
3
+ "version": "1.0.0-beta.103",
4
4
  "main": "index.mjs",
5
5
  "bin": {
6
6
  "create-cookbook": "./index.mjs"