Skip to content

Commit 2a295a8

Browse files
authored
Merge pull request #2642 from balancer/zekraken-bot-patch-1
Remove duplicate entry in tsconfig include array
2 parents 50cc58a + 323dc95 commit 2a295a8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/tokenlists/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
To create a new token list run:
66

77
```shell
8-
npm run tokenlists:create my-new-tokenlist
8+
npm run tokenlist:create my-new-tokenlist
99
```
1010

11-
This will generate two files nest in a folder called
11+
This will generate two files nested in a folder called
1212
`tokenlists/my-new-tokenlist`:
1313

1414
1. tokens.ts - Add token addresses here that you want to include in your
1515
tokenlist
1616
2. overwrites.ts - Add overwrite data here for specific token addresses.
1717

18-
## Add new tokens it existing list
18+
## Add new tokens to an existing list
1919

2020
To add new tokens to an existing tokenlist, add the token address to the
2121
`tokens.ts` file within the relevant network key.
@@ -27,7 +27,7 @@ To remove a token from an existing tokenlist, remove the token address from the
2727

2828
## Overwrite tokenlist output data
2929

30-
To overwrite token metadata produced in the tokenslist, add the desired metadata
30+
To overwrite token metadata produced in the tokenlist, add the desired metadata
3131
to the overwrites file where the key is the token address and the value is the
3232
overwrite data you want to inject. For example, if you simply wanted to make
3333
sure the token name for WETH was 'Wrapped Ether' then you would add:

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"display": "Default",
4-
"include": ["src/**/*", "scripts/generate-lists.ts", "scripts/generate-lists.ts"],
4+
"include": ["src/**/*", "scripts/generate-lists.ts"],
55
"exclude": ["node_modules", "src/lib/templates/**/*"],
66
"compilerOptions": {
77
"composite": false,
@@ -19,7 +19,7 @@
1919
"strict": true,
2020
"noUnusedLocals": false,
2121
"noUnusedParameters": false,
22-
"skipLibCheck": true,
22+
"skipLibCheck": true,
2323
"inlineSourceMap": true,
2424
"allowSyntheticDefaultImports": true
2525
}

0 commit comments

Comments
 (0)