Skip to content

Commit

Permalink
Remove concurrency option from next export (#9197)
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 authored and Timer committed Oct 30, 2019
1 parent c4bef16 commit 17d7544
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 17d7544

Please sign in to comment.