Skip to content

Commit eadc017

Browse files
committed
Added protod command from telescope download
1 parent 5cd5850 commit eadc017

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

packages/create-interchain-app/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
"typescript": "^5.1.6"
6363
},
6464
"dependencies": {
65+
"@cosmology/telescope": "^1.12.2",
6566
"ansi-colors": "4.1.3",
6667
"dargs": "7.0.0",
6768
"fuzzy": "0.1.3",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
import { CIA_URL } from "./constants";
22
import { createGitApp } from "./git-cia-template";
3+
import protodCommand from '@cosmology/telescope/main/commands/download'
34
export const cli = async (argv, version) => {
5+
if (argv._[0] === 'protod') {
6+
console.log('got protod')
7+
await protodCommand(argv);
8+
} else {
49
const repo = argv.repo ?? CIA_URL;
510
const createCosmosApp = createGitApp(repo, version);
611
await createCosmosApp(argv);
12+
}
713
};

0 commit comments

Comments
 (0)