@winjs-dev/create-win 1.0.0 → 1.0.1
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/dist/index.js
CHANGED
|
@@ -268,9 +268,8 @@ var src_default = async ({
|
|
|
268
268
|
if (isPnpm8) {
|
|
269
269
|
await installWithPnpm8(target);
|
|
270
270
|
} else {
|
|
271
|
-
const isYarn = npmClient === "yarn" /* yarn */;
|
|
272
271
|
try {
|
|
273
|
-
await execute(npmClient, [
|
|
272
|
+
await execute(npmClient, ["install"], {
|
|
274
273
|
cwd: target,
|
|
275
274
|
onData: (data) => {
|
|
276
275
|
installTask.text = data;
|
package/package.json
CHANGED