Skip to content

Commit

Permalink
Remove concurrency option from next export
Browse files Browse the repository at this point in the history
Usage of this option was removed in
61b8b73 but the cli was not updated.
  • Loading branch information
ctavan committed Oct 29, 2019
1 parent 4dbd267 commit 50cbfad
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/next/cli/next-export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const nextExport: cliCommand = argv => {
'--silent': Boolean,
'--outdir': String,
'--threads': Number,
'--concurrency': Number,

// Aliases
'-h': '--help',
Expand Down Expand Up @@ -54,7 +53,6 @@ const nextExport: cliCommand = argv => {
const options = {
silent: args['--silent'] || false,
threads: args['--threads'],
concurrency: args['--concurrency'],
outdir: args['--outdir'] ? resolve(args['--outdir']) : join(dir, 'out'),
}

Expand Down

0 comments on commit 50cbfad

Please sign in to comment.