@mounaji_npm/cli 0.1.0 → 0.1.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/bin/cli.js +2 -2
- package/bin/create.js +2 -2
- package/package.json +14 -5
package/bin/cli.js
CHANGED
|
@@ -28,7 +28,7 @@ switch (command) {
|
|
|
28
28
|
|
|
29
29
|
default:
|
|
30
30
|
console.log(`
|
|
31
|
-
@mounaji_npm/cli v0.1.
|
|
31
|
+
@mounaji_npm/cli v0.1.1
|
|
32
32
|
|
|
33
33
|
Usage:
|
|
34
34
|
npx @mounaji_npm/cli create <project-name> Scaffold a new SaaS app
|
|
@@ -37,6 +37,6 @@ Usage:
|
|
|
37
37
|
|
|
38
38
|
Examples:
|
|
39
39
|
npx @mounaji_npm/cli create my-saas-app
|
|
40
|
-
|
|
40
|
+
mounaji create my-saas-app
|
|
41
41
|
`);
|
|
42
42
|
}
|
package/bin/create.js
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mounaji_npm/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "CLI to scaffold a new Mounaji SaaS app — full Next.js template with selectable modules",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cli",
|
|
7
|
+
"scaffold",
|
|
8
|
+
"saas",
|
|
9
|
+
"nextjs",
|
|
10
|
+
"mounaji",
|
|
11
|
+
"create-app"
|
|
12
|
+
],
|
|
6
13
|
"license": "MIT",
|
|
7
14
|
"type": "module",
|
|
8
15
|
"publishConfig": {
|
|
@@ -10,10 +17,12 @@
|
|
|
10
17
|
"registry": "https://registry.npmjs.org/"
|
|
11
18
|
},
|
|
12
19
|
"bin": {
|
|
13
|
-
"
|
|
14
|
-
"mounaji": "./bin/cli.js"
|
|
20
|
+
"mounaji": "bin/cli.js"
|
|
15
21
|
},
|
|
16
|
-
"files": [
|
|
22
|
+
"files": [
|
|
23
|
+
"bin",
|
|
24
|
+
"templates"
|
|
25
|
+
],
|
|
17
26
|
"scripts": {
|
|
18
27
|
"test": "node bin/create.js --help"
|
|
19
28
|
},
|