feat(cli): export options (#6206)

Co-Authored-By: Kevin Marrec <kevin@marrec.io>

[release]
This commit is contained in:
pooya parsa 2019-08-09 18:40:19 +04:30
parent cb22d841fe
commit de7ed24b36
2 changed files with 11 additions and 3 deletions

View File

@ -1,8 +1,10 @@
import * as _commands from './commands'
import * as _imports from './imports'
import * as _options from './options'
export const commands = _commands
export const imports = _imports
export const options = _options
export { default as NuxtCommand } from './command'
export { default as setup } from './setup'

View File

@ -1,3 +1,9 @@
export { default as common } from './common'
export { default as server } from './server'
export { default as locking } from './locking'
import common from './common'
import server from './server'
import locking from './locking'
export {
common,
server,
locking
}