adminforth 1.5.9-next.13 → 1.5.9-next.14

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.
@@ -165,14 +165,14 @@ async function installDependencies(ctx, cwd) {
165
165
  }
166
166
 
167
167
  function generateFinalInstructions(skipPrismaSetup) {
168
- let instruction = '⏭️ Run the following commands to get started:';
168
+ let instruction = '⏭️ Run the following commands to get started:\n';
169
169
  if (!skipPrismaSetup)
170
170
  instruction += `
171
- ${chalk.cyan('$ npm run makemigration -- --name init')}
172
171
  ${chalk.dim('// runs "npx prisma migrate dev --name init" to generate and apply initial migration')}`;
172
+ ${chalk.cyan('$ npm run makemigration -- --name init')}
173
173
  instruction += `
174
+ ${chalk.dim('\n// starts dev server with tsx watch for hot-reloading')}\n
174
175
  ${chalk.cyan('$ npm start')}
175
- ${chalk.dim('// starts dev server with tsx watch for hot-reloading')}\n
176
176
  `;
177
177
 
178
178
  instruction += '😉 Happy coding!';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.5.9-next.13",
3
+ "version": "1.5.9-next.14",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",