nodejs-quickstart-structure 1.4.1 → 1.4.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.
Files changed (2) hide show
  1. package/bin/index.js +1 -1
  2. package/package.json +9 -2
package/bin/index.js CHANGED
@@ -15,7 +15,7 @@ const program = new Command();
15
15
 
16
16
  program
17
17
  .name('nodejs-quickstart')
18
- .description('🚀 CLI to scaffold production-ready Node.js microservices.\n\nGenerates projects with:\n- MVC or Clean Architecture\n- REST or Kafka\n- MySQL or PostgreSQL\n- Docker & Flyway support')
18
+ .description('🚀 CLI to scaffold production-ready Node.js microservices.\n\nGenerates projects with:\n- MVC or Clean Architecture\n- REST or Kafka\n- MySQL, PostgreSQL, or MongoDB\n- Docker, Flyway & Mongoose support')
19
19
  .version(pkg.version, '-v, --version', 'Output the current version')
20
20
  .addHelpText('after', `
21
21
  \n${chalk.yellow('Example:')}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodejs-quickstart-structure",
3
- "version": "1.4.1",
3
+ "version": "1.4.3",
4
4
  "type": "module",
5
5
  "description": "A CLI to scaffold Node.js microservices with MVC or Clean Architecture",
6
6
  "main": "bin/index.js",
@@ -37,5 +37,12 @@
37
37
  "ejs": "^3.1.10",
38
38
  "fs-extra": "^11.3.0",
39
39
  "inquirer": "^12.4.1"
40
- }
40
+ },
41
+ "files": [
42
+ "bin",
43
+ "lib",
44
+ "templates",
45
+ "docs",
46
+ "README.md"
47
+ ]
41
48
  }