1.0.7 • Published 5 years ago
@leandroparedes/cli-tool v1.0.7
cli-tool
Code generation CLI tool
Installation
npm install --save-dev @leandroparedes/cli-toolUsage
tool [command] [options]Commands
module:create
Creates the boilerplate for a module from a template specified in the .templates/modules folder.
By default the .templates/modules/default module template will be used. You can change this behavior
with the --template option (-t for short). The module will be created in the src/app folder (the src
folder must be in the root of the directory)
Usage
tool module:create my-module
tool module:create my-module --template custom-modulestore:create
(should this be a plugin? @leandroparedes/cli-tool-vuex)
Creates the boilerplate for a vuex store from a template specified in the .templates/stores folder.
By default the .templates/stores/default store template will be used. You can change this behavior
with the --template option. The store will be created in the src/store/modules folder
Usage
tool store:create my-store
tool store:create my-store --template custom-store