diff --git a/.vscode/settings.json b/.vscode/settings.json index 1abfed302..75e9c75d4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -16,4 +16,5 @@ "files.exclude": { ".yarn/*": true }, + "files.eol": "\n", } \ No newline at end of file diff --git a/README.md b/README.md index bd0fb9de2..c776dad23 100644 --- a/README.md +++ b/README.md @@ -126,11 +126,21 @@ cca --boilerplate telescope Then, you'll navigate into `./your-project/packages/telescope` package for the next steps. -### Download with CLI +You can also use `telescope generate` command to generate package according to the prompt or terminal command params such as: +`telescope generate --access public --userfullname testname --useremail test@gmail.com --module-desc test --username salkfl --license MIT --module-name test --chain-name cosmos --use-npm-scoped` + +The available options are: +`--userfullname` `--useremail` `--module-desc` `--username` `--module-name` `--chain-name` `--access` `--use-npm-scoped` `--license` + +If some required options are missing, it will prompt to ask for the info. + +To be noted, `--use-npm-scoped` only works when `--access` is `public` + +### Download protos with CLI The old ` telescope install ` command has been deprecated -You can use our CLI for download. To download the proto files, `download` command. +You can use our CLI to download protos by using `download` command. ```sh telescope download diff --git a/packages/telescope/README.md b/packages/telescope/README.md index bd0fb9de2..c776dad23 100644 --- a/packages/telescope/README.md +++ b/packages/telescope/README.md @@ -126,11 +126,21 @@ cca --boilerplate telescope Then, you'll navigate into `./your-project/packages/telescope` package for the next steps. -### Download with CLI +You can also use `telescope generate` command to generate package according to the prompt or terminal command params such as: +`telescope generate --access public --userfullname testname --useremail test@gmail.com --module-desc test --username salkfl --license MIT --module-name test --chain-name cosmos --use-npm-scoped` + +The available options are: +`--userfullname` `--useremail` `--module-desc` `--username` `--module-name` `--chain-name` `--access` `--use-npm-scoped` `--license` + +If some required options are missing, it will prompt to ask for the info. + +To be noted, `--use-npm-scoped` only works when `--access` is `public` + +### Download protos with CLI The old ` telescope install ` command has been deprecated -You can use our CLI for download. To download the proto files, `download` command. +You can use our CLI to download protos by using `download` command. ```sh telescope download diff --git a/packages/telescope/src/commands/generate.ts b/packages/telescope/src/commands/generate.ts index 7365221c2..33985bf85 100644 --- a/packages/telescope/src/commands/generate.ts +++ b/packages/telescope/src/commands/generate.ts @@ -13,18 +13,34 @@ export default async argv => { return shell.exit(1); } - const { name } = await prompt([ + let results: { [key: string]: any } = {}; + + const argsFromCommand = process.argv.slice(2); + argsFromCommand.forEach((arg, index) => { + if (arg.startsWith('--')) { + let key = arg.slice(2).replace(/-/g, '').toUpperCase(); + key = `__${key}__`; + const value = argsFromCommand[index + 1] && !argsFromCommand[index + 1].startsWith('--') ? argsFromCommand[index + 1] : ''; + + if (Array.isArray(value)) { + results[key] = value.split(','); + } else { + results[key] = value; + } + } + }); + const { name } = results.__MODULENAME__ ? { name: results.__MODULENAME__ } : await prompt([ { type: 'string', name: 'name', message: 'Enter your new module name', } ], argv); - shell.exec(`git clone ${repo} ${name}`); shell.cd(name); - const questions = JSON.parse(fs.readFileSync(`.questions.json`)); + let questions = JSON.parse(fs.readFileSync(`.questions.json`)); + questions = questions.filter(question => !(question.name in results)); const fullname = shell .exec('git config --global user.name', { silent: true }) @@ -46,10 +62,10 @@ export default async argv => { { allowCamelCase: true } ); - const results = await prompt(questions, args); - let scopedResults; + const answerResults = await prompt(questions, args); + results = { ...results, answerResults } - const license = await prompt( + const license = results.__LICENSE__ ?? await prompt( [ { name: '__LICENSE__', @@ -62,18 +78,23 @@ export default async argv => { [] ); + let scopedResults; if (results.__ACCESS__ === 'public') { - scopedResults = await prompt( - [ - { - type: 'confirm', - name: 'scoped', - message: 'use npm scopes?', - required: true, - }, - ], - [] - ); + if (results.__USENPMSCOPED__ !== undefined) { + scopedResults = { scoped: true } + } else { + scopedResults = await prompt( + [ + { + type: 'confirm', + name: 'scoped', + message: 'use npm scopes?', + required: true, + }, + ], + [] + ); + } } const files = [] @@ -99,7 +120,6 @@ Proprietary and confidential`; content = content.replace(new RegExp(key, 'g'), results[key]); } }); - if (results.__ACCESS__ === 'public') { if (scopedResults.scoped) { content = content.replace( diff --git a/packages/telescope/telescope-module-boilerplate b/packages/telescope/telescope-module-boilerplate new file mode 160000 index 000000000..35d63d3ed --- /dev/null +++ b/packages/telescope/telescope-module-boilerplate @@ -0,0 +1 @@ +Subproject commit 35d63d3ed3da09e0dc55e4d4beb537bd4f59391a