Skip to content

Commit 6a0d38d

Browse files
committed
cli:
Move the CLI into its own root folder as it is very frequently used and to separate it from smaller build scripts. Updated documentation about the CLI. This also fixes the coverage tests to save the reports to the `reports` folder.
1 parent 43d192c commit 6a0d38d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+70
-58
lines changed

.solcover.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ module.exports = {
66
network_id: 1337,
77
},
88
skipFiles,
9+
istanbulFolder: './reports/coverage',
910
}

DEPLOYMENT.md

Lines changed: 8 additions & 8 deletions

buidler.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import * as dotenv from 'dotenv'
22
import { Wallet } from 'ethers'
33
import { extendEnvironment, task, usePlugin } from '@nomiclabs/buidler/config'
44

5-
import { getAddressBook } from './scripts/cli/address-book'
6-
import { cliOpts } from './scripts/cli/constants'
7-
import { loadContracts, loadEnv } from './scripts/cli/env'
8-
import { migrate } from './scripts/cli/commands/migrate'
9-
import { verify } from './scripts/cli/commands/verify'
5+
import { getAddressBook } from './cli/address-book'
6+
import { cliOpts } from './cli/constants'
7+
import { loadContracts, loadEnv } from './cli/env'
8+
import { migrate } from './cli/commands/migrate'
9+
import { verify } from './cli/commands/verify'
1010

1111
dotenv.config()
1212

cli/README.md

Lines changed: 52 additions & 0 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)