Added movie tile. Fixed actor header. Larger breakpoint for nav menu.
This commit is contained in:
20
src/argv.js
20
src/argv.js
@@ -25,10 +25,6 @@ const { argv } = yargs
|
||||
type: 'array',
|
||||
alias: 'channel',
|
||||
})
|
||||
.option('movies', {
|
||||
describe: 'Scrape movies from channels',
|
||||
type: 'array',
|
||||
})
|
||||
.option('actors', {
|
||||
describe: 'Scrape actors by name or slug',
|
||||
type: 'array',
|
||||
@@ -61,19 +57,18 @@ const { argv } = yargs
|
||||
alias: 'with-profiles',
|
||||
default: false,
|
||||
})
|
||||
.option('scenes', {
|
||||
.option('scene', {
|
||||
describe: 'Scrape scene info from URL',
|
||||
type: 'array',
|
||||
alias: 'scene',
|
||||
})
|
||||
.option('scenes-file', {
|
||||
.option('scene-file', {
|
||||
describe: 'Scrape scene info from URLs in a file',
|
||||
type: 'string',
|
||||
alias: 'scenes-file',
|
||||
})
|
||||
.option('movie', {
|
||||
describe: 'Scrape movie info from URL',
|
||||
type: 'array',
|
||||
alias: 'movies',
|
||||
})
|
||||
.option('sources', {
|
||||
describe: 'Use these scrapers for actor data',
|
||||
@@ -88,12 +83,17 @@ const { argv } = yargs
|
||||
.option('latest', {
|
||||
describe: 'Scrape latest releases if available',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
default: false,
|
||||
})
|
||||
.option('upcoming', {
|
||||
describe: 'Scrape upcoming releases if available',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
default: false,
|
||||
})
|
||||
.option('movies', {
|
||||
describe: 'Scrape movies from channels',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
})
|
||||
.option('force', {
|
||||
describe: 'Don\'t ignore duplicates, update existing entries',
|
||||
|
||||
Reference in New Issue
Block a user