speedrun-cli 2.7.0 → 2.7.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/postSetup.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speedrun-cli",
3
- "version": "2.7.0",
3
+ "version": "2.7.1",
4
4
  "description": "CLI tool to scaffold a production-ready NestJS authentication system with JWT, refresh tokens, and RBAC",
5
5
  "keywords": [
6
6
  "nestjs",
package/src/postSetup.js CHANGED
@@ -37,7 +37,7 @@ async function handlePostSetup(targetDir, appName, options) {
37
37
  const { continueSetup } = await inquirer.prompt([{
38
38
  type: 'confirm',
39
39
  name: 'continueSetup',
40
- message: 'Would you like to complete the setup now? (JWT secrets, database, CRUD)',
40
+ message: 'Would you like to complete the setup now? (.env, databases)',
41
41
  default: true,
42
42
  }]);
43
43