@akash.dev/react-start 1.0.11 → 1.0.13
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/.gitattributes +2 -2
- package/bin/cli.js +3 -4
- package/package.json +12 -12
package/.gitattributes
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
# Auto detect text files and perform LF normalization
|
2
|
-
* text=auto
|
1
|
+
# Auto detect text files and perform LF normalization
|
2
|
+
* text=auto
|
package/bin/cli.js
CHANGED
@@ -10,10 +10,8 @@ const runCommand = command =>{
|
|
10
10
|
return true;
|
11
11
|
}
|
12
12
|
const repoName = process.argv[2];
|
13
|
-
|
14
|
-
|
15
|
-
console.log(`repoName1 - ${repoName1}`);
|
16
|
-
const gitCheckoutCommand = `git clone --dept 1 https://github.com/arakash-developer/reactjs-start ${repoName}`;
|
13
|
+
console.log(repoName);
|
14
|
+
const gitCheckoutCommand = `git clone --dept 1 https://github.com/arakash-developer/react-startjs ${repoName}`;
|
17
15
|
const installDepsCommand = `cd ${repoName} && npm install`;
|
18
16
|
// console.log(`Cloning the repository with name ${repoName}`);
|
19
17
|
console.log(`Installing Packages for ${repoName} @akash.dev`);
|
@@ -25,3 +23,4 @@ if(!installedDeps) process.exit(-1);
|
|
25
23
|
console.log(`Congratulation!! You are Ready @akash.dev`);
|
26
24
|
console.log(`cd ${repoName} && npm run dev or npm start @akash.dev`);
|
27
25
|
|
26
|
+
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
{
|
2
|
-
"name": "@akash.dev/react-start",
|
3
|
-
"version": "1.0.
|
4
|
-
"main": "index.js",
|
5
|
-
"bin": "./bin/cli.js",
|
6
|
-
"scripts": {
|
7
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
8
|
-
},
|
9
|
-
"author": "@akash.dev",
|
10
|
-
"license": "ISC",
|
11
|
-
"description": ""
|
12
|
-
}
|
1
|
+
{
|
2
|
+
"name": "@akash.dev/react-start",
|
3
|
+
"version": "1.0.13",
|
4
|
+
"main": "index.js",
|
5
|
+
"bin": "./bin/cli.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
8
|
+
},
|
9
|
+
"author": "@akash.dev",
|
10
|
+
"license": "ISC",
|
11
|
+
"description": ""
|
12
|
+
}
|