create-make 0.3.2 → 0.3.3
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/README.md +14 -2
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# create-make
|
|
2
2
|
An advance CLI tools for creating new project from GitHub repository.
|
|
3
3
|
|
|
4
|
+
## Usage
|
|
5
|
+
To use this CLI tools on your system you need to install [Node.js](https://nodejs.org) and optionally you can install [yarn](https://classic.yarnpkg.com) if you want to use the second command below.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx create-make
|
|
9
|
+
```
|
|
10
|
+
or
|
|
11
|
+
```bash
|
|
12
|
+
yarn create make
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
|
|
4
16
|
## Config
|
|
5
17
|
|
|
6
18
|
Linux:
|
|
@@ -19,7 +31,7 @@ Windows:
|
|
|
19
31
|
```
|
|
20
32
|
|
|
21
33
|
|
|
22
|
-
|
|
34
|
+
Example of a config.json to use with your own custom template repo for creating new project
|
|
23
35
|
|
|
24
36
|
```json
|
|
25
37
|
{
|
|
@@ -40,4 +52,4 @@ To use your own custom template repo for creating new project
|
|
|
40
52
|
}
|
|
41
53
|
```
|
|
42
54
|
|
|
43
|
-
_Note:_ Your custom categories and templates will show up in
|
|
55
|
+
_Note:_ Your custom categories and templates will show up in __Others__ part of __Select a category__
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-make",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "An advance CLI tools for creating new project from GitHub repository.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "bin.js",
|
|
@@ -16,6 +16,14 @@
|
|
|
16
16
|
},
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"keywords": [
|
|
19
|
+
"create",
|
|
20
|
+
"project",
|
|
21
|
+
"scaffold",
|
|
22
|
+
"template",
|
|
23
|
+
"templating",
|
|
24
|
+
"boilerplate",
|
|
25
|
+
"make",
|
|
26
|
+
"starter",
|
|
19
27
|
"starter maker",
|
|
20
28
|
"project maker"
|
|
21
29
|
],
|