From 17d7544f456feb22e37549b0e85310c98cef6391 Mon Sep 17 00:00:00 2001 From: Christoph Tavan Date: Wed, 30 Oct 2019 04:07:42 +0100 Subject: [PATCH] Remove concurrency option from next export (#9197) Usage of this option was removed in 61b8b7323e089c8cc0372ce0f32402c8d70096f8 but the cli was not updated. --- packages/next/cli/next-export.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/next/cli/next-export.ts b/packages/next/cli/next-export.ts index d473747e3aace..500b69a255061 100755 --- a/packages/next/cli/next-export.ts +++ b/packages/next/cli/next-export.ts @@ -14,7 +14,6 @@ const nextExport: cliCommand = argv => { '--silent': Boolean, '--outdir': String, '--threads': Number, - '--concurrency': Number, // Aliases '-h': '--help', @@ -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'), }