Skip to content

Commit

Permalink
fix: default for-exit to false to prevent dev exit
Browse files Browse the repository at this point in the history
  • Loading branch information
pooya parsa committed Feb 6, 2019
1 parent 5094d9c commit a347ef9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/options/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ export default {
}
}
},
// TODO: Change this to default: false in Nuxt v3 (see related todo's)
// TODO: Change this to default: true in Nuxt 3
'force-exit': {
type: 'boolean',
default: true,
default: false,
description: 'Do not force Nuxt.js to exit after the command has finished (this option has no effect on commands which start a server)'
},
version: {
Expand Down

0 comments on commit a347ef9

Please sign in to comment.