@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 CHANGED
@@ -28,7 +28,7 @@ switch (command) {
28
28
 
29
29
  default:
30
30
  console.log(`
31
- @mounaji_npm/cli v0.1.0
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
- create-mounaji-app my-saas-app
40
+ mounaji create my-saas-app
41
41
  `);
42
42
  }
package/bin/create.js CHANGED
@@ -5,8 +5,8 @@
5
5
  * Usage:
6
6
  * npx @mounaji_npm/cli create my-app
7
7
  *
8
- * Local linked binary:
9
- * create-mounaji-app my-app
8
+ * Local installed binary:
9
+ * mounaji create my-app
10
10
  *
11
11
  * Interactive prompts:
12
12
  * 1. Project name
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "@mounaji_npm/cli",
3
- "version": "0.1.0",
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": ["cli", "scaffold", "saas", "nextjs", "mounaji", "create-app"],
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
- "create-mounaji-app": "./bin/create.js",
14
- "mounaji": "./bin/cli.js"
20
+ "mounaji": "bin/cli.js"
15
21
  },
16
- "files": ["bin", "templates"],
22
+ "files": [
23
+ "bin",
24
+ "templates"
25
+ ],
17
26
  "scripts": {
18
27
  "test": "node bin/create.js --help"
19
28
  },