2020-11-04 13:38:38 +00:00
|
|
|
import path from 'path'
|
2018-10-25 07:43:42 +00:00
|
|
|
import consola from 'consola'
|
2020-11-04 13:38:38 +00:00
|
|
|
|
2018-10-25 07:43:42 +00:00
|
|
|
export * from './mocking'
|
2018-10-29 22:16:16 +00:00
|
|
|
export { NuxtCommand } from '../../src'
|
2018-10-25 07:43:42 +00:00
|
|
|
|
2018-11-08 09:15:56 +00:00
|
|
|
consola.mockTypes(() => jest.fn())
|
2018-10-25 15:40:55 +00:00
|
|
|
|
2020-11-04 13:38:38 +00:00
|
|
|
const localPath = modulePath => path.resolve(process.cwd(), 'node_modules', modulePath)
|
|
|
|
|
2018-10-25 07:43:42 +00:00
|
|
|
export {
|
2020-11-04 13:38:38 +00:00
|
|
|
consola,
|
|
|
|
localPath
|
2018-10-25 07:43:42 +00:00
|
|
|
}
|