From 1f3b37e3102f74e4236b8f93fbf685dc51c599cc Mon Sep 17 00:00:00 2001 From: Vikram Chand Date: Tue, 19 Mar 2024 19:29:59 +0530 Subject: [PATCH 1/7] Fixed: path issue in mac --- src/commands/flutter/install.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/flutter/install.ts b/src/commands/flutter/install.ts index 395e0ba..83cfec6 100644 --- a/src/commands/flutter/install.ts +++ b/src/commands/flutter/install.ts @@ -88,7 +88,7 @@ export default class FlutterInstall extends Command { let self = this; - let source = '\\skeletons\\flutter\\install\\'; + let source = '/skeletons/flutter/install/'; this.target_dir = this.target_dir+this.inputs.app_name; From 07ca442ad8bed208e78de2b525d400f15ca598b4 Mon Sep 17 00:00:00 2001 From: Pradeep Date: Tue, 19 Mar 2024 19:33:24 +0530 Subject: [PATCH 2/7] released: v3.0.4 --- README.md | 583 +++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 584 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1669147..e3bcc4d 100644 --- a/README.md +++ b/README.md @@ -208,6 +208,10 @@ Security: * [Usage](#usage) * [Commands](#commands) +* [Vaah](#vaah) +* [Usage](#usage) +* [Commands](#commands) + # Usage ```sh-session @@ -215,6 +219,18 @@ $ npm install -g vaah $ vaah COMMAND running command... $ vaah (--version) +vaah/3.0.4 win32-x64 node-v20.11.1 +$ vaah --help [COMMAND] +USAGE + $ vaah COMMAND +... +``` + +```sh-session +$ npm install -g vaah +$ vaah COMMAND +running command... +$ vaah (--version) vaah/3.0.3 win32-x64 node-v20.11.1 $ vaah --help [COMMAND] USAGE @@ -276,6 +292,573 @@ DESCRIPTION Generate CRUD operations for VaahCMS ``` +_See code: [src/commands/cms/auth.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/auth.ts)_ + +## `vaah cms:crud` + +Generate CRUD operations for VaahCMS + +``` +USAGE + $ vaah cms:crud [--help] + +FLAGS + --help Generate CRUD operation for VaahCMS + +DESCRIPTION + Generate CRUD operations for VaahCMS +``` + +_See code: [src/commands/cms/crud.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/crud.ts)_ + +## `vaah cms:install [PROJECT_NAME]` + +Install VaahCMS + +``` +USAGE + $ vaah cms:install [PROJECT_NAME] [--here] [-h] + +ARGUMENTS + PROJECT_NAME [default: vaahcms] Enter the project folder name + +FLAGS + -h, --help Show CLI help. + --here If you want to install VaahCMS in current directory + +DESCRIPTION + Install VaahCMS +``` + +_See code: [src/commands/cms/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/install.ts)_ + +## `vaah cms:m` + +To generate module for VaahCMS + +``` +USAGE + $ vaah cms:m [-h] [-n] [-f] + +FLAGS + -f, --force + -h, --help Show CLI help. + -n, --name Show CLI help. + +DESCRIPTION + To generate module for VaahCMS +``` + +_See code: [src/commands/cms/m.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/m.ts)_ + +## `vaah cms:m-make TYPE MODULE NAME` + +Generate for VaahCMS Module + +``` +USAGE + $ vaah cms:m-make TYPE MODULE NAME [-f] [-b] [-h] [-n] + +FLAGS + -b, --backend + -f, --frontend + -h, --help Show CLI help. + -n, --name Show CLI help. + +DESCRIPTION + Generate for VaahCMS Module +``` + +_See code: [src/commands/cms/m-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/m-make.ts)_ + +## `vaah cms:settings` + +Vue3: Generate User CRUD for VaahCMS + +``` +USAGE + $ vaah cms:settings [--help] + +FLAGS + --help Vue3: Generate User CRUD for VaahCMS + +DESCRIPTION + Vue3: Generate User CRUD for VaahCMS +``` + +_See code: [src/commands/cms/settings.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/settings.ts)_ + +## `vaah cms:t` + +To generate theme for VaahCMS + +``` +USAGE + $ vaah cms:t [-h] [-n] [-f] + +FLAGS + -f, --force + -h, --help Show CLI help. + -n, --name Show CLI help. + +DESCRIPTION + To generate theme for VaahCMS +``` + +_See code: [src/commands/cms/t.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/t.ts)_ + +## `vaah cms:t-make TYPE THEME NAME` + +Generate for VaahCMS Theme + +``` +USAGE + $ vaah cms:t-make TYPE THEME NAME [-f] [-b] [-h] [-n] + +FLAGS + -b, --backend + -f, --frontend + -h, --help Show CLI help. + -n, --name Show CLI help. + +DESCRIPTION + Generate for VaahCMS Theme +``` + +_See code: [src/commands/cms/t-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/t-make.ts)_ + +## `vaah cms:taxonomies` + +Vue 3: Generate Taxonomies CRUD operations for VaahCMS + +``` +USAGE + $ vaah cms:taxonomies [--help] + +FLAGS + --help Vue 3: Generate Taxonomies CRUD operations for VaahCMS + +DESCRIPTION + Vue 3: Generate Taxonomies CRUD operations for VaahCMS +``` + +_See code: [src/commands/cms/taxonomies.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/taxonomies.ts)_ + +## `vaah cms:users` + +Vue3: Generate User CRUD for VaahCMS + +``` +USAGE + $ vaah cms:users [--help] + +FLAGS + --help Vue3: Generate User CRUD for VaahCMS + +DESCRIPTION + Vue3: Generate User CRUD for VaahCMS +``` + +_See code: [src/commands/cms/users.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/users.ts)_ + +## `vaah flutter:install` + +Installation of VaahFlutter + +``` +USAGE + $ vaah flutter:install [--help] + +FLAGS + --help Installation of VaahFlutter + +DESCRIPTION + Installation of VaahFlutter +``` + +_See code: [src/commands/flutter/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/flutter/install.ts)_ + +## `vaah hello PERSON` + +Say hello + +``` +USAGE + $ vaah hello PERSON -f + +ARGUMENTS + PERSON Person to say hello to + +FLAGS + -f, --from= (required) Who is saying hello + +DESCRIPTION + Say hello + +EXAMPLES + $ oex hello friend --from oclif + hello friend from oclif! (./src/commands/hello/index.ts) +``` + +_See code: [src/commands/hello/index.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/hello/index.ts)_ + +## `vaah hello:world` + +Say hello world + +``` +USAGE + $ vaah hello:world + +DESCRIPTION + Say hello world + +EXAMPLES + $ vaah hello:world + hello world! (./src/commands/hello/world.ts) +``` + +_See code: [src/commands/hello/world.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/hello/world.ts)_ + +## `vaah help [COMMAND]` + +Display help for vaah. + +``` +USAGE + $ vaah help [COMMAND...] [-n] + +ARGUMENTS + COMMAND... Command to show help for. + +FLAGS + -n, --nested-commands Include all nested commands in the output. + +DESCRIPTION + Display help for vaah. +``` + +_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.0.18/src/commands/help.ts)_ + +## `vaah plugins` + +List installed plugins. + +``` +USAGE + $ vaah plugins [--json] [--core] + +FLAGS + --core Show core plugins. + +GLOBAL FLAGS + --json Format output as json. + +DESCRIPTION + List installed plugins. + +EXAMPLES + $ vaah plugins +``` + +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/index.ts)_ + +## `vaah plugins:install PLUGIN...` + +Installs a plugin into the CLI. + +``` +USAGE + $ vaah plugins:add plugins:install PLUGIN... + +ARGUMENTS + PLUGIN... Plugin to install. + +FLAGS + -f, --force Run yarn install with force flag. + -h, --help Show CLI help. + -s, --silent Silences yarn output. + -v, --verbose Show verbose yarn output. + +GLOBAL FLAGS + --json Format output as json. + +DESCRIPTION + Installs a plugin into the CLI. + Can be installed from npm or a git url. + + Installation of a user-installed plugin will override a core plugin. + + e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command + will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in + the CLI without the need to patch and update the whole CLI. + + +ALIASES + $ vaah plugins:add + +EXAMPLES + $ vaah plugins:add myplugin + + $ vaah plugins:add https://github.com/someuser/someplugin + + $ vaah plugins:add someuser/someplugin +``` + +## `vaah plugins:inspect PLUGIN...` + +Displays installation properties of a plugin. + +``` +USAGE + $ vaah plugins:inspect PLUGIN... + +ARGUMENTS + PLUGIN... [default: .] Plugin to inspect. + +FLAGS + -h, --help Show CLI help. + -v, --verbose + +GLOBAL FLAGS + --json Format output as json. + +DESCRIPTION + Displays installation properties of a plugin. + +EXAMPLES + $ vaah plugins:inspect myplugin +``` + +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/inspect.ts)_ + +## `vaah plugins:install PLUGIN...` + +Installs a plugin into the CLI. + +``` +USAGE + $ vaah plugins:install PLUGIN... + +ARGUMENTS + PLUGIN... Plugin to install. + +FLAGS + -f, --force Run yarn install with force flag. + -h, --help Show CLI help. + -s, --silent Silences yarn output. + -v, --verbose Show verbose yarn output. + +GLOBAL FLAGS + --json Format output as json. + +DESCRIPTION + Installs a plugin into the CLI. + Can be installed from npm or a git url. + + Installation of a user-installed plugin will override a core plugin. + + e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command + will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in + the CLI without the need to patch and update the whole CLI. + + +ALIASES + $ vaah plugins:add + +EXAMPLES + $ vaah plugins:install myplugin + + $ vaah plugins:install https://github.com/someuser/someplugin + + $ vaah plugins:install someuser/someplugin +``` + +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/install.ts)_ + +## `vaah plugins:link PLUGIN` + +Links a plugin into the CLI for development. + +``` +USAGE + $ vaah plugins:link PLUGIN + +ARGUMENTS + PATH [default: .] path to plugin + +FLAGS + -h, --help Show CLI help. + -v, --verbose + --[no-]install Install dependencies after linking the plugin. + +DESCRIPTION + Links a plugin into the CLI for development. + Installation of a linked plugin will override a user-installed or core plugin. + + e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello' + command will override the user-installed or core plugin implementation. This is useful for development work. + + +EXAMPLES + $ vaah plugins:link myplugin +``` + +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/link.ts)_ + +## `vaah plugins:uninstall PLUGIN...` + +Removes a plugin from the CLI. + +``` +USAGE + $ vaah plugins:remove plugins:uninstall PLUGIN... + +ARGUMENTS + PLUGIN... plugin to uninstall + +FLAGS + -h, --help Show CLI help. + -v, --verbose + +DESCRIPTION + Removes a plugin from the CLI. + +ALIASES + $ vaah plugins:unlink + $ vaah plugins:remove + +EXAMPLES + $ vaah plugins:remove myplugin +``` + +## `vaah plugins:reset` + +Remove all user-installed and linked plugins. + +``` +USAGE + $ vaah plugins:reset [--hard] [--reinstall] + +FLAGS + --hard Delete node_modules and package manager related files in addition to uninstalling plugins. + --reinstall Reinstall all plugins after uninstalling. +``` + +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/reset.ts)_ + +## `vaah plugins:uninstall PLUGIN...` + +Removes a plugin from the CLI. + +``` +USAGE + $ vaah plugins:uninstall PLUGIN... + +ARGUMENTS + PLUGIN... plugin to uninstall + +FLAGS + -h, --help Show CLI help. + -v, --verbose + +DESCRIPTION + Removes a plugin from the CLI. + +ALIASES + $ vaah plugins:unlink + $ vaah plugins:remove + +EXAMPLES + $ vaah plugins:uninstall myplugin +``` + +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/uninstall.ts)_ + +## `vaah plugins:uninstall PLUGIN...` + +Removes a plugin from the CLI. + +``` +USAGE + $ vaah plugins:unlink plugins:uninstall PLUGIN... + +ARGUMENTS + PLUGIN... plugin to uninstall + +FLAGS + -h, --help Show CLI help. + -v, --verbose + +DESCRIPTION + Removes a plugin from the CLI. + +ALIASES + $ vaah plugins:unlink + $ vaah plugins:remove + +EXAMPLES + $ vaah plugins:unlink myplugin +``` + +## `vaah plugins:update` + +Update installed plugins. + +``` +USAGE + $ vaah plugins:update [-h] [-v] + +FLAGS + -h, --help Show CLI help. + -v, --verbose + +DESCRIPTION + Update installed plugins. +``` + +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/update.ts)_ + +* [`vaah cms:auth`](#vaah-cmsauth) +* [`vaah cms:crud`](#vaah-cmscrud) +* [`vaah cms:install [PROJECT_NAME]`](#vaah-cmsinstall-project_name) +* [`vaah cms:m`](#vaah-cmsm) +* [`vaah cms:m-make TYPE MODULE NAME`](#vaah-cmsm-make-type-module-name) +* [`vaah cms:settings`](#vaah-cmssettings) +* [`vaah cms:t`](#vaah-cmst) +* [`vaah cms:t-make TYPE THEME NAME`](#vaah-cmst-make-type-theme-name) +* [`vaah cms:taxonomies`](#vaah-cmstaxonomies) +* [`vaah cms:users`](#vaah-cmsusers) +* [`vaah flutter:install`](#vaah-flutterinstall) +* [`vaah hello PERSON`](#vaah-hello-person) +* [`vaah hello:world`](#vaah-helloworld) +* [`vaah help [COMMAND]`](#vaah-help-command) +* [`vaah plugins`](#vaah-plugins) +* [`vaah plugins:install PLUGIN...`](#vaah-pluginsinstall-plugin) +* [`vaah plugins:inspect PLUGIN...`](#vaah-pluginsinspect-plugin) +* [`vaah plugins:install PLUGIN...`](#vaah-pluginsinstall-plugin-1) +* [`vaah plugins:link PLUGIN`](#vaah-pluginslink-plugin) +* [`vaah plugins:uninstall PLUGIN...`](#vaah-pluginsuninstall-plugin) +* [`vaah plugins:reset`](#vaah-pluginsreset) +* [`vaah plugins:uninstall PLUGIN...`](#vaah-pluginsuninstall-plugin-1) +* [`vaah plugins:uninstall PLUGIN...`](#vaah-pluginsuninstall-plugin-2) +* [`vaah plugins:update`](#vaah-pluginsupdate) + +## `vaah cms:auth` + +Generate CRUD operations for VaahCMS + +``` +USAGE + $ vaah cms:auth [--help] + +FLAGS + --help Generate Auth operation for VaahCMS Themes + +DESCRIPTION + Generate CRUD operations for VaahCMS +``` + _See code: [src/commands/cms/auth.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/cms/auth.ts)_ ## `vaah cms:crud` diff --git a/package.json b/package.json index bf2936d..df70828 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vaah", - "version": "3.0.3", + "version": "3.0.4", "description": "CLI of VaahCMS - VaahCLI", "keywords": [ "vaah", From b2f28ff5a61d750ed67de307d28a512969e7043c Mon Sep 17 00:00:00 2001 From: Vikram Chand Date: Wed, 20 Mar 2024 10:44:06 +0530 Subject: [PATCH 3/7] Fixed: path issue in mac --- src/commands/flutter/install.ts | 27 +++++---------------------- src/libraries/Generator.ts | 12 +++++++----- 2 files changed, 12 insertions(+), 27 deletions(-) diff --git a/src/commands/flutter/install.ts b/src/commands/flutter/install.ts index 83cfec6..ec80c97 100644 --- a/src/commands/flutter/install.ts +++ b/src/commands/flutter/install.ts @@ -134,15 +134,15 @@ export default class FlutterInstall extends Command { download(repo, self.target_dir, function (err: any) { console.log((err ? reject('Error') : resolve('Success'))); }) - } }) }, { title: 'Configuring The Project', - task: function () { + task: () => new Promise((resolve, reject) => { generator.generateFlutterFiles(); - } + resolve(true); + }) } ]); @@ -153,13 +153,6 @@ export default class FlutterInstall extends Command { this.spinStopWithError(); }); } - //--------------------------------------------------- - successMessage() - { - - this.log(chalk.white.bgGreen.bold(" Files Generated! ")); - this.log(chalk.green("==================================================================")); - } //--------------------------------------------------- @@ -169,7 +162,7 @@ export default class FlutterInstall extends Command { this.spinner = ora(); - this.spinner.start('Installing VaahCMS...'); + this.spinner.start('Installing VaahFlutter...'); this.spinner._spinner = { "interval": 80, @@ -187,16 +180,6 @@ export default class FlutterInstall extends Command { ] }; - } - //----------------------------------- - async printName() - { - this.log(chalk.red(` - /\\ /\\ __ _ __ _ | |__ / __\\ /\\/\\ / _\\ - \\ \\ / // _\` | / _\` || '_ \\ / / / \\ \\ \\ - \\ V /| (_| || (_| || | | |/ /___/ /\\/\\ \\_\\ \\ - \\_/ \\__,_| \\__,_||_| |_|\\____/\\/ \\/\\__/ -`)); } //----------------------------------- async spinStop() @@ -221,7 +204,7 @@ export default class FlutterInstall extends Command { this.spinner.succeed(); - this.log(chalk.white.bgRed.bold(" VaahCMS Installation Failed! ")); + this.log(chalk.white.bgRed.bold(" VaahFlutter Installation Failed! ")); } //----------------------------------- diff --git a/src/libraries/Generator.ts b/src/libraries/Generator.ts index 9f9c3bc..9f0c75f 100644 --- a/src/libraries/Generator.ts +++ b/src/libraries/Generator.ts @@ -402,11 +402,9 @@ export default class Generator { //log("Source file--> "+chalk.green(file_path)); - - //-- destination path - destination = this.getFileDestination(file_path.replace(/\\/g, "/")); - + file_path = file_path.replace(/\\/g, "/"); + destination = this.getFileDestination(file_path); file_readable_path = __dirname+"/../../skeletons/"+file_path; @@ -528,7 +526,10 @@ export default class Generator { //log("Source file--> "+chalk.green(file_path)); //-- destination path - destination = this.getFileDestination(file_path.replace(/\\/g, "/")); + + file_path = file_path.replace(/\\/g, "/"); + + destination = this.getFileDestination(file_path); file_readable_path = __dirname+"./../../skeletons/"+file_path; @@ -575,6 +576,7 @@ export default class Generator { //log("Source file--> "+chalk.green(file_path)); //-- destination path + file_path = file_path.replace(/\\/g, "/"); destination = this.getFileDestination(file_path); file_readable_path = __dirname+"./../../skeletons/"+file_path; From a5d31820fc6bc1d264aa5b41fe73bf0fb15e9d2d Mon Sep 17 00:00:00 2001 From: Pradeep Date: Wed, 20 Mar 2024 13:02:42 +0530 Subject: [PATCH 4/7] updated: version to v3.0.5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index df70828..07049b2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vaah", - "version": "3.0.4", + "version": "3.0.5", "description": "CLI of VaahCMS - VaahCLI", "keywords": [ "vaah", From 43a614ba05cbced240b6a92cda579373aac7e73e Mon Sep 17 00:00:00 2001 From: Pradeep Date: Wed, 20 Mar 2024 13:07:02 +0530 Subject: [PATCH 5/7] released: version --- README.md | 1208 +---------------------------------------------------- 1 file changed, 21 insertions(+), 1187 deletions(-) diff --git a/README.md b/README.md index e3bcc4d..8ba730d 100644 --- a/README.md +++ b/README.md @@ -204,14 +204,6 @@ Security: * [Usage](#usage) * [Commands](#commands) -* [Vaah](#vaah) -* [Usage](#usage) -* [Commands](#commands) - -* [Vaah](#vaah) -* [Usage](#usage) -* [Commands](#commands) - # Usage ```sh-session @@ -219,31 +211,7 @@ $ npm install -g vaah $ vaah COMMAND running command... $ vaah (--version) -vaah/3.0.4 win32-x64 node-v20.11.1 -$ vaah --help [COMMAND] -USAGE - $ vaah COMMAND -... -``` - -```sh-session -$ npm install -g vaah -$ vaah COMMAND -running command... -$ vaah (--version) -vaah/3.0.3 win32-x64 node-v20.11.1 -$ vaah --help [COMMAND] -USAGE - $ vaah COMMAND -... -``` - -```sh-session -$ npm install -g vaah -$ vaah COMMAND -running command... -$ vaah (--version) -vaah/3.0.2 win32-x64 node-v20.11.1 +vaah/3.0.5 darwin-arm64 node-v18.18.0 $ vaah --help [COMMAND] USAGE $ vaah COMMAND @@ -292,1141 +260,7 @@ DESCRIPTION Generate CRUD operations for VaahCMS ``` -_See code: [src/commands/cms/auth.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/auth.ts)_ - -## `vaah cms:crud` - -Generate CRUD operations for VaahCMS - -``` -USAGE - $ vaah cms:crud [--help] - -FLAGS - --help Generate CRUD operation for VaahCMS - -DESCRIPTION - Generate CRUD operations for VaahCMS -``` - -_See code: [src/commands/cms/crud.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/crud.ts)_ - -## `vaah cms:install [PROJECT_NAME]` - -Install VaahCMS - -``` -USAGE - $ vaah cms:install [PROJECT_NAME] [--here] [-h] - -ARGUMENTS - PROJECT_NAME [default: vaahcms] Enter the project folder name - -FLAGS - -h, --help Show CLI help. - --here If you want to install VaahCMS in current directory - -DESCRIPTION - Install VaahCMS -``` - -_See code: [src/commands/cms/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/install.ts)_ - -## `vaah cms:m` - -To generate module for VaahCMS - -``` -USAGE - $ vaah cms:m [-h] [-n] [-f] - -FLAGS - -f, --force - -h, --help Show CLI help. - -n, --name Show CLI help. - -DESCRIPTION - To generate module for VaahCMS -``` - -_See code: [src/commands/cms/m.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/m.ts)_ - -## `vaah cms:m-make TYPE MODULE NAME` - -Generate for VaahCMS Module - -``` -USAGE - $ vaah cms:m-make TYPE MODULE NAME [-f] [-b] [-h] [-n] - -FLAGS - -b, --backend - -f, --frontend - -h, --help Show CLI help. - -n, --name Show CLI help. - -DESCRIPTION - Generate for VaahCMS Module -``` - -_See code: [src/commands/cms/m-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/m-make.ts)_ - -## `vaah cms:settings` - -Vue3: Generate User CRUD for VaahCMS - -``` -USAGE - $ vaah cms:settings [--help] - -FLAGS - --help Vue3: Generate User CRUD for VaahCMS - -DESCRIPTION - Vue3: Generate User CRUD for VaahCMS -``` - -_See code: [src/commands/cms/settings.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/settings.ts)_ - -## `vaah cms:t` - -To generate theme for VaahCMS - -``` -USAGE - $ vaah cms:t [-h] [-n] [-f] - -FLAGS - -f, --force - -h, --help Show CLI help. - -n, --name Show CLI help. - -DESCRIPTION - To generate theme for VaahCMS -``` - -_See code: [src/commands/cms/t.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/t.ts)_ - -## `vaah cms:t-make TYPE THEME NAME` - -Generate for VaahCMS Theme - -``` -USAGE - $ vaah cms:t-make TYPE THEME NAME [-f] [-b] [-h] [-n] - -FLAGS - -b, --backend - -f, --frontend - -h, --help Show CLI help. - -n, --name Show CLI help. - -DESCRIPTION - Generate for VaahCMS Theme -``` - -_See code: [src/commands/cms/t-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/t-make.ts)_ - -## `vaah cms:taxonomies` - -Vue 3: Generate Taxonomies CRUD operations for VaahCMS - -``` -USAGE - $ vaah cms:taxonomies [--help] - -FLAGS - --help Vue 3: Generate Taxonomies CRUD operations for VaahCMS - -DESCRIPTION - Vue 3: Generate Taxonomies CRUD operations for VaahCMS -``` - -_See code: [src/commands/cms/taxonomies.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/taxonomies.ts)_ - -## `vaah cms:users` - -Vue3: Generate User CRUD for VaahCMS - -``` -USAGE - $ vaah cms:users [--help] - -FLAGS - --help Vue3: Generate User CRUD for VaahCMS - -DESCRIPTION - Vue3: Generate User CRUD for VaahCMS -``` - -_See code: [src/commands/cms/users.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/cms/users.ts)_ - -## `vaah flutter:install` - -Installation of VaahFlutter - -``` -USAGE - $ vaah flutter:install [--help] - -FLAGS - --help Installation of VaahFlutter - -DESCRIPTION - Installation of VaahFlutter -``` - -_See code: [src/commands/flutter/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/flutter/install.ts)_ - -## `vaah hello PERSON` - -Say hello - -``` -USAGE - $ vaah hello PERSON -f - -ARGUMENTS - PERSON Person to say hello to - -FLAGS - -f, --from= (required) Who is saying hello - -DESCRIPTION - Say hello - -EXAMPLES - $ oex hello friend --from oclif - hello friend from oclif! (./src/commands/hello/index.ts) -``` - -_See code: [src/commands/hello/index.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/hello/index.ts)_ - -## `vaah hello:world` - -Say hello world - -``` -USAGE - $ vaah hello:world - -DESCRIPTION - Say hello world - -EXAMPLES - $ vaah hello:world - hello world! (./src/commands/hello/world.ts) -``` - -_See code: [src/commands/hello/world.ts](https://github.com/webreinvent/vaah/blob/v3.0.4/src/commands/hello/world.ts)_ - -## `vaah help [COMMAND]` - -Display help for vaah. - -``` -USAGE - $ vaah help [COMMAND...] [-n] - -ARGUMENTS - COMMAND... Command to show help for. - -FLAGS - -n, --nested-commands Include all nested commands in the output. - -DESCRIPTION - Display help for vaah. -``` - -_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.0.18/src/commands/help.ts)_ - -## `vaah plugins` - -List installed plugins. - -``` -USAGE - $ vaah plugins [--json] [--core] - -FLAGS - --core Show core plugins. - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - List installed plugins. - -EXAMPLES - $ vaah plugins -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/index.ts)_ - -## `vaah plugins:install PLUGIN...` - -Installs a plugin into the CLI. - -``` -USAGE - $ vaah plugins:add plugins:install PLUGIN... - -ARGUMENTS - PLUGIN... Plugin to install. - -FLAGS - -f, --force Run yarn install with force flag. - -h, --help Show CLI help. - -s, --silent Silences yarn output. - -v, --verbose Show verbose yarn output. - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Installs a plugin into the CLI. - Can be installed from npm or a git url. - - Installation of a user-installed plugin will override a core plugin. - - e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command - will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in - the CLI without the need to patch and update the whole CLI. - - -ALIASES - $ vaah plugins:add - -EXAMPLES - $ vaah plugins:add myplugin - - $ vaah plugins:add https://github.com/someuser/someplugin - - $ vaah plugins:add someuser/someplugin -``` - -## `vaah plugins:inspect PLUGIN...` - -Displays installation properties of a plugin. - -``` -USAGE - $ vaah plugins:inspect PLUGIN... - -ARGUMENTS - PLUGIN... [default: .] Plugin to inspect. - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Displays installation properties of a plugin. - -EXAMPLES - $ vaah plugins:inspect myplugin -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/inspect.ts)_ - -## `vaah plugins:install PLUGIN...` - -Installs a plugin into the CLI. - -``` -USAGE - $ vaah plugins:install PLUGIN... - -ARGUMENTS - PLUGIN... Plugin to install. - -FLAGS - -f, --force Run yarn install with force flag. - -h, --help Show CLI help. - -s, --silent Silences yarn output. - -v, --verbose Show verbose yarn output. - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Installs a plugin into the CLI. - Can be installed from npm or a git url. - - Installation of a user-installed plugin will override a core plugin. - - e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command - will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in - the CLI without the need to patch and update the whole CLI. - - -ALIASES - $ vaah plugins:add - -EXAMPLES - $ vaah plugins:install myplugin - - $ vaah plugins:install https://github.com/someuser/someplugin - - $ vaah plugins:install someuser/someplugin -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/install.ts)_ - -## `vaah plugins:link PLUGIN` - -Links a plugin into the CLI for development. - -``` -USAGE - $ vaah plugins:link PLUGIN - -ARGUMENTS - PATH [default: .] path to plugin - -FLAGS - -h, --help Show CLI help. - -v, --verbose - --[no-]install Install dependencies after linking the plugin. - -DESCRIPTION - Links a plugin into the CLI for development. - Installation of a linked plugin will override a user-installed or core plugin. - - e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello' - command will override the user-installed or core plugin implementation. This is useful for development work. - - -EXAMPLES - $ vaah plugins:link myplugin -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/link.ts)_ - -## `vaah plugins:uninstall PLUGIN...` - -Removes a plugin from the CLI. - -``` -USAGE - $ vaah plugins:remove plugins:uninstall PLUGIN... - -ARGUMENTS - PLUGIN... plugin to uninstall - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Removes a plugin from the CLI. - -ALIASES - $ vaah plugins:unlink - $ vaah plugins:remove - -EXAMPLES - $ vaah plugins:remove myplugin -``` - -## `vaah plugins:reset` - -Remove all user-installed and linked plugins. - -``` -USAGE - $ vaah plugins:reset [--hard] [--reinstall] - -FLAGS - --hard Delete node_modules and package manager related files in addition to uninstalling plugins. - --reinstall Reinstall all plugins after uninstalling. -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/reset.ts)_ - -## `vaah plugins:uninstall PLUGIN...` - -Removes a plugin from the CLI. - -``` -USAGE - $ vaah plugins:uninstall PLUGIN... - -ARGUMENTS - PLUGIN... plugin to uninstall - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Removes a plugin from the CLI. - -ALIASES - $ vaah plugins:unlink - $ vaah plugins:remove - -EXAMPLES - $ vaah plugins:uninstall myplugin -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/uninstall.ts)_ - -## `vaah plugins:uninstall PLUGIN...` - -Removes a plugin from the CLI. - -``` -USAGE - $ vaah plugins:unlink plugins:uninstall PLUGIN... - -ARGUMENTS - PLUGIN... plugin to uninstall - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Removes a plugin from the CLI. - -ALIASES - $ vaah plugins:unlink - $ vaah plugins:remove - -EXAMPLES - $ vaah plugins:unlink myplugin -``` - -## `vaah plugins:update` - -Update installed plugins. - -``` -USAGE - $ vaah plugins:update [-h] [-v] - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Update installed plugins. -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/update.ts)_ - -* [`vaah cms:auth`](#vaah-cmsauth) -* [`vaah cms:crud`](#vaah-cmscrud) -* [`vaah cms:install [PROJECT_NAME]`](#vaah-cmsinstall-project_name) -* [`vaah cms:m`](#vaah-cmsm) -* [`vaah cms:m-make TYPE MODULE NAME`](#vaah-cmsm-make-type-module-name) -* [`vaah cms:settings`](#vaah-cmssettings) -* [`vaah cms:t`](#vaah-cmst) -* [`vaah cms:t-make TYPE THEME NAME`](#vaah-cmst-make-type-theme-name) -* [`vaah cms:taxonomies`](#vaah-cmstaxonomies) -* [`vaah cms:users`](#vaah-cmsusers) -* [`vaah flutter:install`](#vaah-flutterinstall) -* [`vaah hello PERSON`](#vaah-hello-person) -* [`vaah hello:world`](#vaah-helloworld) -* [`vaah help [COMMAND]`](#vaah-help-command) -* [`vaah plugins`](#vaah-plugins) -* [`vaah plugins:install PLUGIN...`](#vaah-pluginsinstall-plugin) -* [`vaah plugins:inspect PLUGIN...`](#vaah-pluginsinspect-plugin) -* [`vaah plugins:install PLUGIN...`](#vaah-pluginsinstall-plugin-1) -* [`vaah plugins:link PLUGIN`](#vaah-pluginslink-plugin) -* [`vaah plugins:uninstall PLUGIN...`](#vaah-pluginsuninstall-plugin) -* [`vaah plugins:reset`](#vaah-pluginsreset) -* [`vaah plugins:uninstall PLUGIN...`](#vaah-pluginsuninstall-plugin-1) -* [`vaah plugins:uninstall PLUGIN...`](#vaah-pluginsuninstall-plugin-2) -* [`vaah plugins:update`](#vaah-pluginsupdate) - -## `vaah cms:auth` - -Generate CRUD operations for VaahCMS - -``` -USAGE - $ vaah cms:auth [--help] - -FLAGS - --help Generate Auth operation for VaahCMS Themes - -DESCRIPTION - Generate CRUD operations for VaahCMS -``` - -_See code: [src/commands/cms/auth.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/cms/auth.ts)_ - -## `vaah cms:crud` - -Generate CRUD operations for VaahCMS - -``` -USAGE - $ vaah cms:crud [--help] - -FLAGS - --help Generate CRUD operation for VaahCMS - -DESCRIPTION - Generate CRUD operations for VaahCMS -``` - -_See code: [src/commands/cms/crud.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/cms/crud.ts)_ - -## `vaah cms:install [PROJECT_NAME]` - -Install VaahCMS - -``` -USAGE - $ vaah cms:install [PROJECT_NAME] [--here] [-h] - -ARGUMENTS - PROJECT_NAME [default: vaahcms] Enter the project folder name - -FLAGS - -h, --help Show CLI help. - --here If you want to install VaahCMS in current directory - -DESCRIPTION - Install VaahCMS -``` - -_See code: [src/commands/cms/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/cms/install.ts)_ - -## `vaah cms:m` - -To generate module for VaahCMS - -``` -USAGE - $ vaah cms:m [-h] [-n] [-f] - -FLAGS - -f, --force - -h, --help Show CLI help. - -n, --name Show CLI help. - -DESCRIPTION - To generate module for VaahCMS -``` - -_See code: [src/commands/cms/m.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/cms/m.ts)_ - -## `vaah cms:m-make TYPE MODULE NAME` - -Generate for VaahCMS Module - -``` -USAGE - $ vaah cms:m-make TYPE MODULE NAME [-f] [-b] [-h] [-n] - -FLAGS - -b, --backend - -f, --frontend - -h, --help Show CLI help. - -n, --name Show CLI help. - -DESCRIPTION - Generate for VaahCMS Module -``` - -_See code: [src/commands/cms/m-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/cms/m-make.ts)_ - -## `vaah cms:settings` - -Vue3: Generate User CRUD for VaahCMS - -``` -USAGE - $ vaah cms:settings [--help] - -FLAGS - --help Vue3: Generate User CRUD for VaahCMS - -DESCRIPTION - Vue3: Generate User CRUD for VaahCMS -``` - -_See code: [src/commands/cms/settings.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/cms/settings.ts)_ - -## `vaah cms:t` - -To generate theme for VaahCMS - -``` -USAGE - $ vaah cms:t [-h] [-n] [-f] - -FLAGS - -f, --force - -h, --help Show CLI help. - -n, --name Show CLI help. - -DESCRIPTION - To generate theme for VaahCMS -``` - -_See code: [src/commands/cms/t.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/cms/t.ts)_ - -## `vaah cms:t-make TYPE THEME NAME` - -Generate for VaahCMS Theme - -``` -USAGE - $ vaah cms:t-make TYPE THEME NAME [-f] [-b] [-h] [-n] - -FLAGS - -b, --backend - -f, --frontend - -h, --help Show CLI help. - -n, --name Show CLI help. - -DESCRIPTION - Generate for VaahCMS Theme -``` - -_See code: [src/commands/cms/t-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/cms/t-make.ts)_ - -## `vaah cms:taxonomies` - -Vue 3: Generate Taxonomies CRUD operations for VaahCMS - -``` -USAGE - $ vaah cms:taxonomies [--help] - -FLAGS - --help Vue 3: Generate Taxonomies CRUD operations for VaahCMS - -DESCRIPTION - Vue 3: Generate Taxonomies CRUD operations for VaahCMS -``` - -_See code: [src/commands/cms/taxonomies.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/cms/taxonomies.ts)_ - -## `vaah cms:users` - -Vue3: Generate User CRUD for VaahCMS - -``` -USAGE - $ vaah cms:users [--help] - -FLAGS - --help Vue3: Generate User CRUD for VaahCMS - -DESCRIPTION - Vue3: Generate User CRUD for VaahCMS -``` - -_See code: [src/commands/cms/users.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/cms/users.ts)_ - -## `vaah flutter:install` - -Installation of VaahFlutter - -``` -USAGE - $ vaah flutter:install [--help] - -FLAGS - --help Installation of VaahFlutter - -DESCRIPTION - Installation of VaahFlutter -``` - -_See code: [src/commands/flutter/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/flutter/install.ts)_ - -## `vaah hello PERSON` - -Say hello - -``` -USAGE - $ vaah hello PERSON -f - -ARGUMENTS - PERSON Person to say hello to - -FLAGS - -f, --from= (required) Who is saying hello - -DESCRIPTION - Say hello - -EXAMPLES - $ oex hello friend --from oclif - hello friend from oclif! (./src/commands/hello/index.ts) -``` - -_See code: [src/commands/hello/index.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/hello/index.ts)_ - -## `vaah hello:world` - -Say hello world - -``` -USAGE - $ vaah hello:world - -DESCRIPTION - Say hello world - -EXAMPLES - $ vaah hello:world - hello world! (./src/commands/hello/world.ts) -``` - -_See code: [src/commands/hello/world.ts](https://github.com/webreinvent/vaah/blob/v3.0.3/src/commands/hello/world.ts)_ - -## `vaah help [COMMAND]` - -Display help for vaah. - -``` -USAGE - $ vaah help [COMMAND...] [-n] - -ARGUMENTS - COMMAND... Command to show help for. - -FLAGS - -n, --nested-commands Include all nested commands in the output. - -DESCRIPTION - Display help for vaah. -``` - -_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.0.18/src/commands/help.ts)_ - -## `vaah plugins` - -List installed plugins. - -``` -USAGE - $ vaah plugins [--json] [--core] - -FLAGS - --core Show core plugins. - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - List installed plugins. - -EXAMPLES - $ vaah plugins -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/index.ts)_ - -## `vaah plugins:install PLUGIN...` - -Installs a plugin into the CLI. - -``` -USAGE - $ vaah plugins:add plugins:install PLUGIN... - -ARGUMENTS - PLUGIN... Plugin to install. - -FLAGS - -f, --force Run yarn install with force flag. - -h, --help Show CLI help. - -s, --silent Silences yarn output. - -v, --verbose Show verbose yarn output. - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Installs a plugin into the CLI. - Can be installed from npm or a git url. - - Installation of a user-installed plugin will override a core plugin. - - e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command - will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in - the CLI without the need to patch and update the whole CLI. - - -ALIASES - $ vaah plugins:add - -EXAMPLES - $ vaah plugins:add myplugin - - $ vaah plugins:add https://github.com/someuser/someplugin - - $ vaah plugins:add someuser/someplugin -``` - -## `vaah plugins:inspect PLUGIN...` - -Displays installation properties of a plugin. - -``` -USAGE - $ vaah plugins:inspect PLUGIN... - -ARGUMENTS - PLUGIN... [default: .] Plugin to inspect. - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Displays installation properties of a plugin. - -EXAMPLES - $ vaah plugins:inspect myplugin -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/inspect.ts)_ - -## `vaah plugins:install PLUGIN...` - -Installs a plugin into the CLI. - -``` -USAGE - $ vaah plugins:install PLUGIN... - -ARGUMENTS - PLUGIN... Plugin to install. - -FLAGS - -f, --force Run yarn install with force flag. - -h, --help Show CLI help. - -s, --silent Silences yarn output. - -v, --verbose Show verbose yarn output. - -GLOBAL FLAGS - --json Format output as json. - -DESCRIPTION - Installs a plugin into the CLI. - Can be installed from npm or a git url. - - Installation of a user-installed plugin will override a core plugin. - - e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command - will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in - the CLI without the need to patch and update the whole CLI. - - -ALIASES - $ vaah plugins:add - -EXAMPLES - $ vaah plugins:install myplugin - - $ vaah plugins:install https://github.com/someuser/someplugin - - $ vaah plugins:install someuser/someplugin -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/install.ts)_ - -## `vaah plugins:link PLUGIN` - -Links a plugin into the CLI for development. - -``` -USAGE - $ vaah plugins:link PLUGIN - -ARGUMENTS - PATH [default: .] path to plugin - -FLAGS - -h, --help Show CLI help. - -v, --verbose - --[no-]install Install dependencies after linking the plugin. - -DESCRIPTION - Links a plugin into the CLI for development. - Installation of a linked plugin will override a user-installed or core plugin. - - e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello' - command will override the user-installed or core plugin implementation. This is useful for development work. - - -EXAMPLES - $ vaah plugins:link myplugin -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/link.ts)_ - -## `vaah plugins:uninstall PLUGIN...` - -Removes a plugin from the CLI. - -``` -USAGE - $ vaah plugins:remove plugins:uninstall PLUGIN... - -ARGUMENTS - PLUGIN... plugin to uninstall - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Removes a plugin from the CLI. - -ALIASES - $ vaah plugins:unlink - $ vaah plugins:remove - -EXAMPLES - $ vaah plugins:remove myplugin -``` - -## `vaah plugins:reset` - -Remove all user-installed and linked plugins. - -``` -USAGE - $ vaah plugins:reset [--hard] [--reinstall] - -FLAGS - --hard Delete node_modules and package manager related files in addition to uninstalling plugins. - --reinstall Reinstall all plugins after uninstalling. -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/reset.ts)_ - -## `vaah plugins:uninstall PLUGIN...` - -Removes a plugin from the CLI. - -``` -USAGE - $ vaah plugins:uninstall PLUGIN... - -ARGUMENTS - PLUGIN... plugin to uninstall - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Removes a plugin from the CLI. - -ALIASES - $ vaah plugins:unlink - $ vaah plugins:remove - -EXAMPLES - $ vaah plugins:uninstall myplugin -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/uninstall.ts)_ - -## `vaah plugins:uninstall PLUGIN...` - -Removes a plugin from the CLI. - -``` -USAGE - $ vaah plugins:unlink plugins:uninstall PLUGIN... - -ARGUMENTS - PLUGIN... plugin to uninstall - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Removes a plugin from the CLI. - -ALIASES - $ vaah plugins:unlink - $ vaah plugins:remove - -EXAMPLES - $ vaah plugins:unlink myplugin -``` - -## `vaah plugins:update` - -Update installed plugins. - -``` -USAGE - $ vaah plugins:update [-h] [-v] - -FLAGS - -h, --help Show CLI help. - -v, --verbose - -DESCRIPTION - Update installed plugins. -``` - -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/update.ts)_ - -* [`vaah cms:auth`](#vaah-cmsauth) -* [`vaah cms:crud`](#vaah-cmscrud) -* [`vaah cms:install [PROJECT_NAME]`](#vaah-cmsinstall-project_name) -* [`vaah cms:m`](#vaah-cmsm) -* [`vaah cms:m-make TYPE MODULE NAME`](#vaah-cmsm-make-type-module-name) -* [`vaah cms:settings`](#vaah-cmssettings) -* [`vaah cms:t`](#vaah-cmst) -* [`vaah cms:t-make TYPE THEME NAME`](#vaah-cmst-make-type-theme-name) -* [`vaah cms:taxonomies`](#vaah-cmstaxonomies) -* [`vaah cms:users`](#vaah-cmsusers) -* [`vaah flutter:install`](#vaah-flutterinstall) -* [`vaah hello PERSON`](#vaah-hello-person) -* [`vaah hello:world`](#vaah-helloworld) -* [`vaah help [COMMAND]`](#vaah-help-command) -* [`vaah plugins`](#vaah-plugins) -* [`vaah plugins:install PLUGIN...`](#vaah-pluginsinstall-plugin) -* [`vaah plugins:inspect PLUGIN...`](#vaah-pluginsinspect-plugin) -* [`vaah plugins:install PLUGIN...`](#vaah-pluginsinstall-plugin-1) -* [`vaah plugins:link PLUGIN`](#vaah-pluginslink-plugin) -* [`vaah plugins:uninstall PLUGIN...`](#vaah-pluginsuninstall-plugin) -* [`vaah plugins:reset`](#vaah-pluginsreset) -* [`vaah plugins:uninstall PLUGIN...`](#vaah-pluginsuninstall-plugin-1) -* [`vaah plugins:uninstall PLUGIN...`](#vaah-pluginsuninstall-plugin-2) -* [`vaah plugins:update`](#vaah-pluginsupdate) - -## `vaah cms:auth` - -Generate CRUD operations for VaahCMS - -``` -USAGE - $ vaah cms:auth [--help] - -FLAGS - --help Generate Auth operation for VaahCMS Themes - -DESCRIPTION - Generate CRUD operations for VaahCMS -``` - -_See code: [src/commands/cms/auth.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/cms/auth.ts)_ +_See code: [src/commands/cms/auth.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/auth.ts)_ ## `vaah cms:crud` @@ -1443,7 +277,7 @@ DESCRIPTION Generate CRUD operations for VaahCMS ``` -_See code: [src/commands/cms/crud.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/cms/crud.ts)_ +_See code: [src/commands/cms/crud.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/crud.ts)_ ## `vaah cms:install [PROJECT_NAME]` @@ -1464,7 +298,7 @@ DESCRIPTION Install VaahCMS ``` -_See code: [src/commands/cms/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/cms/install.ts)_ +_See code: [src/commands/cms/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/install.ts)_ ## `vaah cms:m` @@ -1483,7 +317,7 @@ DESCRIPTION To generate module for VaahCMS ``` -_See code: [src/commands/cms/m.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/cms/m.ts)_ +_See code: [src/commands/cms/m.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/m.ts)_ ## `vaah cms:m-make TYPE MODULE NAME` @@ -1503,7 +337,7 @@ DESCRIPTION Generate for VaahCMS Module ``` -_See code: [src/commands/cms/m-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/cms/m-make.ts)_ +_See code: [src/commands/cms/m-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/m-make.ts)_ ## `vaah cms:settings` @@ -1520,7 +354,7 @@ DESCRIPTION Vue3: Generate User CRUD for VaahCMS ``` -_See code: [src/commands/cms/settings.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/cms/settings.ts)_ +_See code: [src/commands/cms/settings.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/settings.ts)_ ## `vaah cms:t` @@ -1539,7 +373,7 @@ DESCRIPTION To generate theme for VaahCMS ``` -_See code: [src/commands/cms/t.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/cms/t.ts)_ +_See code: [src/commands/cms/t.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/t.ts)_ ## `vaah cms:t-make TYPE THEME NAME` @@ -1559,7 +393,7 @@ DESCRIPTION Generate for VaahCMS Theme ``` -_See code: [src/commands/cms/t-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/cms/t-make.ts)_ +_See code: [src/commands/cms/t-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/t-make.ts)_ ## `vaah cms:taxonomies` @@ -1576,7 +410,7 @@ DESCRIPTION Vue 3: Generate Taxonomies CRUD operations for VaahCMS ``` -_See code: [src/commands/cms/taxonomies.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/cms/taxonomies.ts)_ +_See code: [src/commands/cms/taxonomies.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/taxonomies.ts)_ ## `vaah cms:users` @@ -1593,7 +427,7 @@ DESCRIPTION Vue3: Generate User CRUD for VaahCMS ``` -_See code: [src/commands/cms/users.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/cms/users.ts)_ +_See code: [src/commands/cms/users.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/users.ts)_ ## `vaah flutter:install` @@ -1610,7 +444,7 @@ DESCRIPTION Installation of VaahFlutter ``` -_See code: [src/commands/flutter/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/flutter/install.ts)_ +_See code: [src/commands/flutter/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/flutter/install.ts)_ ## `vaah hello PERSON` @@ -1634,7 +468,7 @@ EXAMPLES hello friend from oclif! (./src/commands/hello/index.ts) ``` -_See code: [src/commands/hello/index.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/hello/index.ts)_ +_See code: [src/commands/hello/index.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/hello/index.ts)_ ## `vaah hello:world` @@ -1652,7 +486,7 @@ EXAMPLES hello world! (./src/commands/hello/world.ts) ``` -_See code: [src/commands/hello/world.ts](https://github.com/webreinvent/vaah/blob/v3.0.2/src/commands/hello/world.ts)_ +_See code: [src/commands/hello/world.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/hello/world.ts)_ ## `vaah help [COMMAND]` @@ -1695,7 +529,7 @@ EXAMPLES $ vaah plugins ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/index.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.8/src/commands/plugins/index.ts)_ ## `vaah plugins:install PLUGIN...` @@ -1764,7 +598,7 @@ EXAMPLES $ vaah plugins:inspect myplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/inspect.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.8/src/commands/plugins/inspect.ts)_ ## `vaah plugins:install PLUGIN...` @@ -1808,7 +642,7 @@ EXAMPLES $ vaah plugins:install someuser/someplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/install.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.8/src/commands/plugins/install.ts)_ ## `vaah plugins:link PLUGIN` @@ -1838,7 +672,7 @@ EXAMPLES $ vaah plugins:link myplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/link.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.8/src/commands/plugins/link.ts)_ ## `vaah plugins:uninstall PLUGIN...` @@ -1879,7 +713,7 @@ FLAGS --reinstall Reinstall all plugins after uninstalling. ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/reset.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.8/src/commands/plugins/reset.ts)_ ## `vaah plugins:uninstall PLUGIN...` @@ -1907,7 +741,7 @@ EXAMPLES $ vaah plugins:uninstall myplugin ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/uninstall.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.8/src/commands/plugins/uninstall.ts)_ ## `vaah plugins:uninstall PLUGIN...` @@ -1951,7 +785,7 @@ DESCRIPTION Update installed plugins. ``` -_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.7/src/commands/plugins/update.ts)_ +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.3.8/src/commands/plugins/update.ts)_ From f947f77ac36c90dd3b3462e9555bb3986398ce6a Mon Sep 17 00:00:00 2001 From: Vikram Chand Date: Wed, 20 Mar 2024 13:35:29 +0530 Subject: [PATCH 6/7] Fixed: skeleton path issue in mac --- src/libraries/Generator.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libraries/Generator.ts b/src/libraries/Generator.ts index 9f0c75f..74e5f2a 100644 --- a/src/libraries/Generator.ts +++ b/src/libraries/Generator.ts @@ -297,7 +297,7 @@ export default class Generator { let destination = this.getFileDestination(file_path); - let file_readable_path = __dirname+"./../../skeletons/"+file_path; + let file_readable_path = __dirname+"/../../skeletons/"+file_path; let file_content = fs.readFileSync(file_readable_path).toString(); let parsed_file_content = ejs.render(file_content, this.inputs); @@ -531,7 +531,7 @@ export default class Generator { destination = this.getFileDestination(file_path); - file_readable_path = __dirname+"./../../skeletons/"+file_path; + file_readable_path = __dirname+"/../../skeletons/"+file_path; file_content = fs.readFileSync(file_readable_path).toString(); parsed_file_content = ejs.render(file_content, this.inputs); @@ -579,7 +579,7 @@ export default class Generator { file_path = file_path.replace(/\\/g, "/"); destination = this.getFileDestination(file_path); - file_readable_path = __dirname+"./../../skeletons/"+file_path; + file_readable_path = __dirname+"/../../skeletons/"+file_path; file_content = fs.readFileSync(file_readable_path).toString(); parsed_file_content = ejs.render(file_content, this.inputs); From 56a5f7c3fc9cb6ad02ed46e4c4ebc4cba9805959 Mon Sep 17 00:00:00 2001 From: Pradeep Date: Wed, 20 Mar 2024 13:39:02 +0530 Subject: [PATCH 7/7] released: v3.0.6 --- README.md | 28 ++++++++++++++-------------- package.json | 2 +- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 8ba730d..cbe3aad 100644 --- a/README.md +++ b/README.md @@ -211,7 +211,7 @@ $ npm install -g vaah $ vaah COMMAND running command... $ vaah (--version) -vaah/3.0.5 darwin-arm64 node-v18.18.0 +vaah/3.0.6 darwin-arm64 node-v18.18.0 $ vaah --help [COMMAND] USAGE $ vaah COMMAND @@ -260,7 +260,7 @@ DESCRIPTION Generate CRUD operations for VaahCMS ``` -_See code: [src/commands/cms/auth.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/auth.ts)_ +_See code: [src/commands/cms/auth.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/cms/auth.ts)_ ## `vaah cms:crud` @@ -277,7 +277,7 @@ DESCRIPTION Generate CRUD operations for VaahCMS ``` -_See code: [src/commands/cms/crud.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/crud.ts)_ +_See code: [src/commands/cms/crud.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/cms/crud.ts)_ ## `vaah cms:install [PROJECT_NAME]` @@ -298,7 +298,7 @@ DESCRIPTION Install VaahCMS ``` -_See code: [src/commands/cms/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/install.ts)_ +_See code: [src/commands/cms/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/cms/install.ts)_ ## `vaah cms:m` @@ -317,7 +317,7 @@ DESCRIPTION To generate module for VaahCMS ``` -_See code: [src/commands/cms/m.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/m.ts)_ +_See code: [src/commands/cms/m.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/cms/m.ts)_ ## `vaah cms:m-make TYPE MODULE NAME` @@ -337,7 +337,7 @@ DESCRIPTION Generate for VaahCMS Module ``` -_See code: [src/commands/cms/m-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/m-make.ts)_ +_See code: [src/commands/cms/m-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/cms/m-make.ts)_ ## `vaah cms:settings` @@ -354,7 +354,7 @@ DESCRIPTION Vue3: Generate User CRUD for VaahCMS ``` -_See code: [src/commands/cms/settings.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/settings.ts)_ +_See code: [src/commands/cms/settings.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/cms/settings.ts)_ ## `vaah cms:t` @@ -373,7 +373,7 @@ DESCRIPTION To generate theme for VaahCMS ``` -_See code: [src/commands/cms/t.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/t.ts)_ +_See code: [src/commands/cms/t.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/cms/t.ts)_ ## `vaah cms:t-make TYPE THEME NAME` @@ -393,7 +393,7 @@ DESCRIPTION Generate for VaahCMS Theme ``` -_See code: [src/commands/cms/t-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/t-make.ts)_ +_See code: [src/commands/cms/t-make.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/cms/t-make.ts)_ ## `vaah cms:taxonomies` @@ -410,7 +410,7 @@ DESCRIPTION Vue 3: Generate Taxonomies CRUD operations for VaahCMS ``` -_See code: [src/commands/cms/taxonomies.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/taxonomies.ts)_ +_See code: [src/commands/cms/taxonomies.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/cms/taxonomies.ts)_ ## `vaah cms:users` @@ -427,7 +427,7 @@ DESCRIPTION Vue3: Generate User CRUD for VaahCMS ``` -_See code: [src/commands/cms/users.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/cms/users.ts)_ +_See code: [src/commands/cms/users.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/cms/users.ts)_ ## `vaah flutter:install` @@ -444,7 +444,7 @@ DESCRIPTION Installation of VaahFlutter ``` -_See code: [src/commands/flutter/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/flutter/install.ts)_ +_See code: [src/commands/flutter/install.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/flutter/install.ts)_ ## `vaah hello PERSON` @@ -468,7 +468,7 @@ EXAMPLES hello friend from oclif! (./src/commands/hello/index.ts) ``` -_See code: [src/commands/hello/index.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/hello/index.ts)_ +_See code: [src/commands/hello/index.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/hello/index.ts)_ ## `vaah hello:world` @@ -486,7 +486,7 @@ EXAMPLES hello world! (./src/commands/hello/world.ts) ``` -_See code: [src/commands/hello/world.ts](https://github.com/webreinvent/vaah/blob/v3.0.5/src/commands/hello/world.ts)_ +_See code: [src/commands/hello/world.ts](https://github.com/webreinvent/vaah/blob/v3.0.6/src/commands/hello/world.ts)_ ## `vaah help [COMMAND]` diff --git a/package.json b/package.json index 07049b2..bee0a8e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vaah", - "version": "3.0.5", + "version": "3.0.6", "description": "CLI of VaahCMS - VaahCLI", "keywords": [ "vaah",