convector-cli
convector-cli copied to clipboard
Official Command-Line Interface for Convector Framework
The `-c` parameter is missing in the command samples of the documentation/readme in the conv generate section.
Running `conv generate model myModel -c myChaincode` generates `myModel.model.ts`, however, the class name of the generated model should be `MyModel` instead of `MyChaincode`.
when you use: conv generate model Supplier -c supplychainchaincode the file is generated with the name supplier.model.ts but the class is wrong. it should be Supplier but instead you get...
Right now when we run the chaincode in debug mode with hurley, we need to compile TS and then run cc:package to generate the chaincode folder again. It would be...
If dependencies are added with `^` unexpected errors will occur when new versions are published. Publish this along with the upcoming release of Convector core libs. https://github.com/worldsibu/convector-cli/blob/ee01cb32fe2f3563a52f4089075c12c1c7628637/src/utils/package-structure.compiler.ts#L56 https://github.com/worldsibu/convector-cli/blob/ee01cb32fe2f3563a52f4089075c12c1c7628637/src/utils/project-structure.compiler.ts#L73
Feature : would it be a feature to consider, when you make a new project by conv new PROJECT_NAME -c CHAINCODE_NAME to generate multiple Chaincode files in the project folder...
generating client API starting from the models and the controllers
For example, right now creating a model or a controller by default overrides the folder convention, creating files in the current folder. `conv generate model` `conv generate controller` should accept...
Right now it overrides whatever there is. It should throw an error if folder exists already.