mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-30 09:27:13 +00:00
925abf8123
* chore(pkg): show build error loc * fix(cli): add nuxt serve dependencies * chore: update rollup resolve and commonjs plugins to latest * test: mock listener for nuxt serve
32 lines
857 B
JavaScript
32 lines
857 B
JavaScript
import path from 'path'
|
|
|
|
const localNodeModules = path.resolve(process.cwd(), 'node_modules')
|
|
|
|
// Prefer importing modules from local node_modules (for NPX and global bin)
|
|
async function _import (modulePath) {
|
|
for (const mp of [
|
|
path.resolve(localNodeModules, modulePath),
|
|
modulePath
|
|
]) {
|
|
try {
|
|
return await import(mp)
|
|
} catch (e) {
|
|
if (e.code !== 'MODULE_NOT_FOUND') {
|
|
throw e
|
|
}
|
|
}
|
|
}
|
|
|
|
const error = new Error(`Cannot import module '${modulePath}'`)
|
|
error.code = 'MODULE_NOT_FOUND'
|
|
throw error
|
|
}
|
|
|
|
export const builder = () => _import('@nuxt/builder')
|
|
export const webpack = () => _import('@nuxt/webpack')
|
|
export const generator = () => _import('@nuxt/generator')
|
|
export const core = () => _import('@nuxt/core')
|
|
export const server = () => _import('@nuxt/server')
|
|
|
|
export const importModule = _import
|