3.0.10 • Published 1 year ago

vaah v3.0.10

Weekly downloads
144
License
MIT
Repository
github
Last release
1 year ago

Vaah

Command line tool to Generate Files for Rapid Development

Please consider starring the project to show your :heart: and support.

Feature Roadmap

Completed

:white_check_mark: VaahCMS Installer

:white_check_mark: VaahCMS Module Generator

:white_check_mark: VaahCMS Module CRUD Generator

:white_check_mark: VaahCMS Theme Generator

:white_check_mark: VaahCMS Theme Auth Generator

:white_check_mark: VaahCMS Modules Files (migration, model, view, controller, seed )

:white_check_mark: VaahCMS Themes Files (migration, model, view, controller, seed )

Planned

:black_square_button: Laravel Package Development

:black_square_button: Laravel Files (migration, model, view, controller, seed )

:black_square_button: WordPress Theme

:black_square_button: WordPress Plugin

Install

Install with npm:

npm install -g vaah

Quick Command Generator

VaahCms Installer

  • vaah cms:install or npx vaah cms:install : It will install vaahcms in newly created vaahcms folder
  • vaah cms:install [FOLDER] : To install VaahCMS
  • vaah cms:install --here : To install VaahCMS in current director

VaahFlutter Installer

  • vaah flutter:install or npx vaah flutter:install : It will install VaahFlutter in newly created vaahflutter folder

VaahCms Module Generators

List of commands:

  • vaah cms:m or npx vaah cms:m : To generate module
  • vaah cms:crud or npx vaah cms:crud : To generator crud operation file for module
  • vaah cms:users or npx vaah cms:users : Vue 3: To Generate Users CRUD operations for VaahCMS
  • vaah cms:taxonomies or npx vaah cms:taxonomies : Vue 3: To Generate Taxonomies CRUD operations for VaahCMS
  • vaah cms:settings or npx vaah cms:settings : Vue 3: To Generate Setting for VaahCMS

All following commands accept option parameter -f <folder_name> or -folder <folder_name>

  • vaah cms:m-make migration <module> <name> : To generate module migration
  • vaah cms:m-make seed <module> <name> : To generate module seed
  • vaah cms:m-make model <module> <name> : To generate module model
  • vaah cms:m-make controller <module> <name> : To generate module controller
  • vaah cms:m-make view <module> <name> : To generate module view
  • vaah cms:m-make middleware <module> <name> : To generate module middleware
  • vaah cms:m-make observer <module> <name> : To generate module observer
  • vaah cms:m-make trait <module> <name> : To generate module trait
  • vaah cms:m-make test <module> <name> : To generate module browser test
  • vaah cms:m-make event <module> <name> : To generate module events
  • vaah cms:m-make listener <module> <name> : To generate module listener
  • vaah cms:m-make mail <module> <name> : To generate module email
  • vaah cms:m-make notification <module> <name> : To generate module notification

VaahCms Theme Generators

List of commands:

  • vaah cms:t or npx vaah cms:t : To generate theme
  • vaah cms:auth or npx vaah cms:auth: Generate Sign in & Sign up, authentication scaffolding

All following commands accept option parameter -f <folder_name> or -folder <folder_name>

  • vaah cms:t-make migration <theme> <name> : To generate theme migration
  • vaah cms:t-make seed <theme> <name> : To generate theme seed
  • vaah cms:t-make model <theme> <name> : To generate theme model
  • vaah cms:t-make controller <theme> <name> : To generate theme controller
  • vaah cms:t-make view <theme> <theme> : To generate theme view
  • vaah cms:t-make middleware <theme> <name> : To generate theme middleware
  • vaah cms:t-make observer <theme> <name> : To generate theme observer
  • vaah cms:t-make trait <theme> <name> : To generate theme trait
  • vaah cms:t-make test <theme> <name> : To generate theme browser test

Laravel Generators

Laravel Package Development

  1. Create a folder as packages at root of laravel installation
  2. Create your package folder. Eg. if your package name is HelloWorld then your folder name should be hello-world
  3. Open the folder in command line and run vaah laravel make:package. It will start wizard and ask you the Vendor Name & Package Name.
  4. Once your package is generated, you need add the path in composer.json file of laravel:
     ...
        "autoload-dev": {
            "classmap": [
                "tests/TestCase.php"
            ],
            "psr-4": {
                "YourVendorName\\YourPackageName\\": "packages-scr-path"
            }
        },
        ...
  5. Register your package's service provider at config/app.php: YourVendorName\YourPackageName\YourPackageNameServiceProvider::class,.

  6. Finally, run composer dump-autoload.

That's it, your package is ready for use in development environment.

You have access to following commands as well:

CommandAliasDetails
vaah laravel make:packagevaah lv:pTo general Laravel package
vaah laravel make:package-resetvaah lv:p-resetTo reset/delete generate files.
vaah laravel make:package-file [type] [name]vaah lv:p-file [type] [name]To generate package file.

List of commands:

  • vaah lv:p-file model fileName
  • vaah lv:p-file view fileName
  • vaah lv:p-file controller fileName
  • vaah lv:p-file seed fileName
  • vaah lv:p-file migration fileName

Support us

WebReinvent is a web agency based in Delhi, India. You'll find an overview of all our open source projects on github.

Setup Development Environment

Step 1:

Clone this repository

Step 2:

Run npm install

Step 4:

Now you can run vaah commands in development mode from terminal like:

bin\run [COMMAND]
bin\run DEBUG=* [COMMAND] //for command debbuging
bin\run lv:p
bin\run cms:install
bin\run cms:m
bin\run cms:crud // crud file for any section
bin\run cms:t
bin\run cms:auth

*Windows: If you want to debug the command then run following command first on:

set DEBUG=*

Step 5:

Run following command to publish the package to npm:

Change the version in package.json then run

npm publish

Step 6: Change log

To generate CHANGELOG.md, use following command:

auto-changelog

Change Log

  • Install npm install auto-changelog -g
  • To generate CHANGELOG.md, run auto-changelog in the root folder of the project

Maintain following pre-fixes to your commit messages:

Added:
Changed:
Deprecated:
Removed:
Fixed:
Security:

Usage

$ npm install -g vaah
$ vaah COMMAND
running command...
$ vaah (--version)
vaah/3.0.10 win32-x64 node-v20.15.0
$ vaah --help [COMMAND]
USAGE
  $ vaah COMMAND
...
$ npm install -g vaah
$ vaah COMMAND
running command...
$ vaah (--version)
vaah/3.0.8 win32-x64 node-v20.15.0
$ vaah --help [COMMAND]
USAGE
  $ vaah COMMAND
...
$ npm install -g vaah
$ vaah COMMAND
running command...
$ vaah (--version)
vaah/3.0.7 win32-x64 node-v20.11.1
$ vaah --help [COMMAND]
USAGE
  $ vaah COMMAND
...
$ npm install -g vaah
$ vaah COMMAND
running command...
$ vaah (--version)
vaah/3.0.6 darwin-arm64 node-v18.18.0
$ vaah --help [COMMAND]
USAGE
  $ vaah COMMAND
...

Commands

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

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

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

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

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

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

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

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

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

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

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

vaah hello PERSON

Say hello

USAGE
  $ vaah hello PERSON -f <value>

ARGUMENTS
  PERSON  Person to say hello to

FLAGS
  -f, --from=<value>  (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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

vaah hello PERSON

Say hello

USAGE
  $ vaah hello PERSON -f <value>

ARGUMENTS
  PERSON  Person to say hello to

FLAGS
  -f, --from=<value>  (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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

vaah hello PERSON

Say hello

USAGE
  $ vaah hello PERSON -f <value>

ARGUMENTS
  PERSON  Person to say hello to

FLAGS
  -f, --from=<value>  (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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

vaah hello PERSON

Say hello

USAGE
  $ vaah hello PERSON -f <value>

ARGUMENTS
  PERSON  Person to say hello to

FLAGS
  -f, --from=<value>  (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

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

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

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

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

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

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

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

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

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

Oclif Docs:

Framework

License

The MIT License (MIT). Please see License File for more information.

3.0.8

1 year ago

3.0.10

1 year ago

3.0.7

1 year ago

3.0.4

1 year ago

3.0.3

1 year ago

3.0.2

1 year ago

3.0.1

1 year ago

3.0.6

1 year ago

3.0.5

1 year ago

2.3.9

1 year ago

2.3.8

2 years ago

2.3.6

2 years ago

2.3.5

2 years ago

2.3.7

2 years ago

2.3.4

2 years ago

2.3.3

2 years ago

2.3.2

2 years ago

2.3.1

2 years ago

2.3.0

2 years ago

2.2.9

2 years ago

2.2.1

2 years ago

2.2.0

2 years ago

2.2.3

2 years ago

2.2.2

2 years ago

2.2.5

2 years ago

2.2.4

2 years ago

2.2.7

2 years ago

2.2.6

2 years ago

2.1.2

2 years ago

2.1.1

2 years ago

2.1.4

2 years ago

2.1.3

2 years ago

2.1.6

2 years ago

2.1.5

2 years ago

2.1.8

2 years ago

2.1.7

2 years ago

2.1.0

2 years ago

2.2.8

2 years ago

2.1.9

2 years ago

2.1.16

2 years ago

2.1.17

2 years ago

2.1.14

2 years ago

2.1.15

2 years ago

2.1.13

2 years ago

2.1.10

2 years ago

2.1.11

2 years ago

2.1.18

2 years ago

2.1.19

2 years ago

2.1.25

2 years ago

2.1.23

2 years ago

2.1.24

2 years ago

2.1.21

2 years ago

2.1.22

2 years ago

2.1.20

2 years ago

2.0.19

3 years ago

2.0.26

2 years ago

2.0.27

2 years ago

2.0.24

2 years ago

2.0.25

2 years ago

2.0.22

2 years ago

2.0.23

2 years ago

2.0.20

3 years ago

2.0.21

3 years ago

2.0.28

2 years ago

2.0.29

2 years ago

2.0.35

2 years ago

2.0.33

2 years ago

2.0.34

2 years ago

2.0.31

2 years ago

2.0.32

2 years ago

2.0.30

2 years ago

2.0.15

3 years ago

2.0.16

3 years ago

2.0.13

3 years ago

2.0.14

3 years ago

2.0.11

3 years ago

2.0.12

3 years ago

2.0.10

3 years ago

2.0.17

3 years ago

2.0.18

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.5

3 years ago

2.0.4

3 years ago

2.0.6

3 years ago

2.0.9

3 years ago

2.0.8

3 years ago

1.4.7

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.4.6

3 years ago

1.4.5

3 years ago

1.4.4

3 years ago

1.4.3

3 years ago

1.4.2

3 years ago

1.4.1

3 years ago

1.4.0

3 years ago

1.3.20

3 years ago

1.3.10

3 years ago

1.3.13

3 years ago

1.3.14

3 years ago

1.3.11

3 years ago

1.3.12

3 years ago

1.3.17

3 years ago

1.3.18

3 years ago

1.3.15

3 years ago

1.3.16

3 years ago

1.3.19

3 years ago

1.3.7

3 years ago

1.3.6

3 years ago

1.3.5

3 years ago

1.3.4

3 years ago

1.3.3

3 years ago

1.3.2

3 years ago

1.3.1

3 years ago

1.3.0

3 years ago

1.3.9

3 years ago

1.3.8

3 years ago

1.2.0

3 years ago

1.2.1

3 years ago

1.11.16

3 years ago

1.11.17

3 years ago

1.11.14

4 years ago

1.11.15

4 years ago

1.11.12

4 years ago

1.11.13

4 years ago

1.11.10

4 years ago

1.11.11

4 years ago

1.11.18

3 years ago

1.11.19

3 years ago

1.11.4

4 years ago

1.11.3

4 years ago

1.11.2

4 years ago

1.11.8

4 years ago

1.11.7

4 years ago

1.11.6

4 years ago

1.11.5

4 years ago

1.11.9

4 years ago

1.11.1

4 years ago

1.11.0

4 years ago

1.10.12

4 years ago

1.10.9

4 years ago

1.10.11

4 years ago

1.10.10

4 years ago

1.10.8

4 years ago

1.10.7

4 years ago

1.10.5

4 years ago

1.10.4

4 years ago

1.10.3

4 years ago

1.10.2

4 years ago

1.10.6

4 years ago

1.10.1

4 years ago

1.10.0

4 years ago

1.9.1

4 years ago

1.9.0

4 years ago

1.8.20

4 years ago

1.8.21

4 years ago

1.8.17

4 years ago

1.8.18

4 years ago

1.8.19

4 years ago

1.8.9

4 years ago

1.8.10

4 years ago

1.8.11

4 years ago

1.8.7

4 years ago

1.8.12

4 years ago

1.8.6

4 years ago

1.8.13

4 years ago

1.8.5

4 years ago

1.8.14

4 years ago

1.8.4

4 years ago

1.8.15

4 years ago

1.8.3

4 years ago

1.8.16

4 years ago

1.8.2

4 years ago

1.8.1

4 years ago

1.8.0

4 years ago

1.7.10

4 years ago

1.7.11

4 years ago

1.7.12

4 years ago

1.7.9

4 years ago

1.7.8

4 years ago

1.7.7

4 years ago

1.7.5

4 years ago

1.7.4

4 years ago

1.7.3

4 years ago

1.7.2

4 years ago

1.7.1

4 years ago

1.7.0

4 years ago

1.6.8

4 years ago

1.6.7

4 years ago

1.6.6

4 years ago

1.6.5

4 years ago

1.6.1

4 years ago

1.6.0

4 years ago

1.5.12

4 years ago

1.5.11

5 years ago

1.5.10

5 years ago

1.5.9

5 years ago

1.5.8

5 years ago

1.5.7

5 years ago

1.5.6

5 years ago

1.5.5

5 years ago

1.5.4

5 years ago

1.5.3

5 years ago

1.5.2

5 years ago

1.5.1

5 years ago

1.5.0

5 years ago

1.0.9

5 years ago

1.0.10

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.6.9

5 years ago

0.6.7

5 years ago

0.6.6

5 years ago

0.6.8

5 years ago

0.6.5

5 years ago

0.6.3

5 years ago

0.6.2

5 years ago

0.6.4

5 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.5.16

5 years ago

0.5.14

5 years ago

0.5.15

5 years ago

0.5.13

5 years ago

0.5.12

5 years ago

0.5.11

5 years ago

0.5.10

5 years ago

0.5.6

5 years ago

0.5.5

5 years ago

0.5.4

5 years ago

0.5.3

5 years ago

0.5.2

5 years ago

0.5.1

5 years ago

0.5.0

5 years ago

0.4.9

5 years ago

0.4.8

5 years ago

0.4.7

6 years ago

0.4.6

6 years ago

0.4.5

6 years ago

0.3.20

6 years ago

0.3.27

6 years ago

0.3.26

6 years ago

0.3.25

6 years ago

0.3.24

6 years ago

0.3.23

6 years ago

0.3.22

6 years ago

0.3.21

6 years ago

0.3.19

6 years ago

0.3.18

6 years ago

0.3.17

6 years ago

0.3.16

6 years ago

0.3.15

6 years ago

0.3.14

6 years ago

0.3.13

6 years ago

0.3.12

6 years ago

0.3.11

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.4.2

6 years ago

0.3.6

6 years ago

0.3.5

6 years ago

0.3.8

6 years ago

0.3.7

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.3.9

6 years ago

0.3.0

6 years ago

0.2.11

6 years ago

0.2.10

6 years ago

0.2.9

6 years ago

0.2.7

6 years ago

0.2.6

6 years ago

0.2.8

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.23

6 years ago

0.1.24

6 years ago

0.1.22

6 years ago

0.1.21

6 years ago

0.1.20

6 years ago

0.1.19

6 years ago

0.1.17

6 years ago

0.1.18

6 years ago

0.1.16

6 years ago

0.1.15

6 years ago

0.1.14

6 years ago

0.1.13

6 years ago

0.1.12

6 years ago

0.1.11

6 years ago

0.1.10

6 years ago

0.1.9

6 years ago

0.1.8

6 years ago

0.1.7

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.23

7 years ago

0.0.22

7 years ago

0.0.21

7 years ago

0.0.20

7 years ago

0.0.19

7 years ago

0.0.18

7 years ago

0.0.17

7 years ago

0.0.16

7 years ago

0.0.15

7 years ago

0.0.14

7 years ago

0.0.13

7 years ago

0.0.12

7 years ago

0.0.11

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago