mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 14:15:13 +00:00
feat(cli): export options (#6206)
Co-Authored-By: Kevin Marrec <kevin@marrec.io> [release]
This commit is contained in:
parent
cb22d841fe
commit
de7ed24b36
@ -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'
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user