adminforth 2.4.0-next.17 → 2.4.0-next.19

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/commands/cli.js +2 -1
  2. package/package.json +1 -1
package/commands/cli.js CHANGED
@@ -20,7 +20,8 @@ function showHelp() {
20
20
  chalk.green(' create-plugin') + chalk.white(' Create a plugin for your AdminForth app\n') +
21
21
  chalk.green(' generate-models') + chalk.white(' Generate TypeScript models from your databases\n') +
22
22
  chalk.green(' bundle') + chalk.white(' Bundles your AdminForth app SPA for production\n') +
23
- chalk.green(' component') + chalk.white(' Scaffold a custom Vue component\n')
23
+ chalk.green(' component') + chalk.white(' Scaffold a custom Vue component\n') +
24
+ chalk.green(' resource') + chalk.white(' Scaffold a custom resource\n') +
24
25
  );
25
26
  }
26
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.4.0-next.17",
3
+ "version": "2.4.0-next.19",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",