We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cd5850 commit eadc017Copy full SHA for eadc017
packages/create-interchain-app/package.json
@@ -62,6 +62,7 @@
62
"typescript": "^5.1.6"
63
},
64
"dependencies": {
65
+ "@cosmology/telescope": "^1.12.2",
66
"ansi-colors": "4.1.3",
67
"dargs": "7.0.0",
68
"fuzzy": "0.1.3",
packages/create-interchain-app/src/cli.ts
@@ -1,7 +1,13 @@
1
import { CIA_URL } from "./constants";
2
import { createGitApp } from "./git-cia-template";
3
+import protodCommand from '@cosmology/telescope/main/commands/download'
4
export const cli = async (argv, version) => {
5
+ if (argv._[0] === 'protod') {
6
+ console.log('got protod')
7
+ await protodCommand(argv);
8
+ } else {
9
const repo = argv.repo ?? CIA_URL;
10
const createCosmosApp = createGitApp(repo, version);
11
await createCosmosApp(argv);
12
+ }
13
};
0 commit comments