@akash.dev/react-start 1.0.10 → 1.0.12
Sign up to get free protection for your applications and to get access to all the features.
- package/bin/cli.js +1 -3
- package/index.js +4 -0
- package/package.json +1 -1
package/bin/cli.js
CHANGED
@@ -10,9 +10,7 @@ const runCommand = command =>{
|
|
10
10
|
return true;
|
11
11
|
}
|
12
12
|
const repoName = process.argv[2];
|
13
|
-
|
14
|
-
console.log(`repoName - ${repoName}`);
|
15
|
-
console.log(`repoName1 - ${repoName1}`);
|
13
|
+
console.log(repoName);
|
16
14
|
const gitCheckoutCommand = `git clone --dept 1 https://github.com/arakash-developer/reactjs-start ${repoName}`;
|
17
15
|
const installDepsCommand = `cd ${repoName} && npm install`;
|
18
16
|
// console.log(`Cloning the repository with name ${repoName}`);
|
package/index.js
CHANGED