Filtering invalid actors from releases before storing.

This commit is contained in:
DebaucheryLibrarian
2020-10-29 16:06:20 +01:00
parent 2801732f57
commit c37d4ad01f
5 changed files with 38 additions and 27 deletions

View File

@@ -30,20 +30,20 @@ const { argv } = yargs
type: 'boolean',
alias: 'web',
})
.option('networks', {
.option('include-networks', {
describe: 'Network to scrape all channels from (overrides configuration)',
type: 'array',
alias: 'network',
alias: ['include-network', 'networks', 'network'],
})
.option('exclude-networks', {
describe: 'Network not to scrape any channels from (overrides configuration)',
type: 'array',
alias: 'exclude-network',
})
.option('channels', {
.option('include-channels', {
describe: 'Channel to scrape (overrides configuration)',
type: 'array',
alias: 'channel',
alias: ['include-channel', 'channels', 'channel'],
})
.option('exclude-channels', {
describe: 'Channel not to scrape (overrides configuration)',