Skip to content

Commit 36e7bc6

Browse files
committed
Bin has to be create for yarn
1 parent 57a55ff commit 36e7bc6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/@apphosting/create/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@apphosting/create",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"main": "dist/index.js",
55
"description": "Experimental addon to the Firebase CLI to add web framework support",
66
"repository": {
77
"type": "git",
88
"url": "git+https://github.com/FirebaseExtended/firebase-framework-tools.git"
99
},
1010
"bin": {
11-
"apphosting-create": "dist/bin/create.js"
11+
"create": "dist/bin/create.js"
1212
},
1313
"author": {
1414
"name": "Firebase",

packages/@apphosting/create/src/bin/create.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ program
7272
);
7373
cloneSpinner.succeed();
7474
if (packageManager === "npm") {
75-
console.log(`> ${packageManager} install`);
76-
await spawn(packageManager, ["install"], {
75+
console.log("> npm install");
76+
await spawn("npm", ["install"], {
7777
shell: true,
7878
stdio: "inherit",
7979
cwd: dir,

0 commit comments

Comments
 (0)