Skip to content

Commit 1fd6e9b

Browse files
committed
updated config for telescope boilerplate
1 parent bd58970 commit 1fd6e9b

File tree

4 files changed

+4
-22
lines changed

4 files changed

+4
-22
lines changed

boilerplates/telescope/packages/__MODULENAME__/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
},
2222
"scripts": {
2323
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24-
"clean": "rimraf dist/**",
24+
"clean": "rimraf dist",
2525
"prepare": "npm run build",
2626
"download-protos": "ts-node scripts/download-protos.ts",
2727
"codegen": "ts-node scripts/codegen.ts",
28-
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
29-
"build:dev": "npm run clean; npm run codegen; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
28+
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
29+
"build:dev": "npm run clean && npm run codegen && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
3030
"lint": "eslint . --fix",
3131
"test": "jest",
3232
"test:watch": "jest --watch"

boilerplates/telescope/packages/__MODULENAME__/scripts/codegen.ts

-15
Original file line numberDiff line numberDiff line change
@@ -76,25 +76,10 @@ export const options: TelescopeInput = {
7676
...AMINO_MAP
7777
},
7878
},
79-
lcdClients: {
80-
enabled: false
81-
},
8279
rpcClients: {
8380
type: 'tendermint',
8481
enabled: true
8582
},
86-
87-
reactQuery: {
88-
enabled: false
89-
},
90-
91-
mobx: {
92-
enabled: false
93-
},
94-
95-
pinia: {
96-
enabled: false
97-
}
9883
}
9984
};
10085

boilerplates/telescope/packages/__MODULENAME__/scripts/download-protos.ts

-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const config = {
55
repos: [
66
{ owner: "cosmos", repo: "cosmos-sdk", branch: "release/v0.50.x" },
77
{ owner: "cosmos", repo: "ibc-go" },
8-
{ owner: "injectivelabs", repo: "sdk-go" }
98
],
109
protoDirMapping: {
1110
"gogo/protobuf/master": ".",
@@ -17,9 +16,7 @@ const config = {
1716
tempRepoDir: "git-modules",
1817
targets: [
1918
"cosmos/**/*.proto",
20-
"cosmwasm/**/*.proto",
2119
"ibc/**/*.proto",
22-
"injective/types/v1beta1/account.proto"
2320
]
2421
};
2522

packages/create-interchain-app/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"baseUrl": ".",
4-
"rootDir": "src",
4+
"rootDir": ".",
55
"skipLibCheck": true,
66
"emitDeclarationOnly": false,
77
"declaration": true,

0 commit comments

Comments
 (0)