2018-10-17 21:28:25 +00:00
|
|
|
import Module from 'module'
|
|
|
|
import { resolve, join } from 'path'
|
|
|
|
import fs from 'fs-extra'
|
2019-01-06 08:02:28 +00:00
|
|
|
import consola from 'consola'
|
2018-10-17 21:28:25 +00:00
|
|
|
import esm from 'esm'
|
|
|
|
|
2018-12-22 21:05:13 +00:00
|
|
|
import { startsWithRootAlias, startsWithSrcAlias } from '@nuxt/utils'
|
2018-10-17 21:28:25 +00:00
|
|
|
|
|
|
|
export default class Resolver {
|
|
|
|
constructor(nuxt) {
|
|
|
|
this.nuxt = nuxt
|
|
|
|
this.options = this.nuxt.options
|
|
|
|
|
|
|
|
// Binds
|
|
|
|
this.resolvePath = this.resolvePath.bind(this)
|
|
|
|
this.resolveAlias = this.resolveAlias.bind(this)
|
|
|
|
this.resolveModule = this.resolveModule.bind(this)
|
|
|
|
this.requireModule = this.requireModule.bind(this)
|
|
|
|
|
|
|
|
// ESM Loader
|
2019-04-21 17:50:32 +00:00
|
|
|
this.esm = esm(module)
|
2018-10-17 21:28:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
resolveModule(path) {
|
|
|
|
try {
|
2018-12-12 06:31:49 +00:00
|
|
|
return Module._resolveFilename(path, {
|
2018-10-17 21:28:25 +00:00
|
|
|
paths: this.options.modulesDir
|
|
|
|
})
|
|
|
|
} catch (error) {
|
|
|
|
if (error.code === 'MODULE_NOT_FOUND') {
|
|
|
|
return undefined
|
|
|
|
} else {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resolveAlias(path) {
|
|
|
|
if (startsWithRootAlias(path)) {
|
|
|
|
return join(this.options.rootDir, path.substr(2))
|
|
|
|
}
|
|
|
|
|
|
|
|
if (startsWithSrcAlias(path)) {
|
|
|
|
return join(this.options.srcDir, path.substr(1))
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolve(this.options.srcDir, path)
|
|
|
|
}
|
|
|
|
|
2019-01-06 08:02:28 +00:00
|
|
|
resolvePath(path, { alias, isAlias = alias, module, isModule = module, isStyle } = {}) {
|
|
|
|
// TODO: Remove in Nuxt 3
|
|
|
|
if (alias) {
|
|
|
|
consola.warn('Using alias is deprecated and will be removed in Nuxt 3. Use `isAlias` instead.')
|
|
|
|
}
|
|
|
|
if (module) {
|
|
|
|
consola.warn('Using module is deprecated and will be removed in Nuxt 3. Use `isModule` instead.')
|
|
|
|
}
|
|
|
|
|
2018-10-17 21:28:25 +00:00
|
|
|
// Fast return in case of path exists
|
|
|
|
if (fs.existsSync(path)) {
|
|
|
|
return path
|
|
|
|
}
|
|
|
|
|
|
|
|
let resolvedPath
|
|
|
|
|
|
|
|
// Try to resolve it as a regular module
|
2019-01-06 08:02:28 +00:00
|
|
|
if (isModule !== false) {
|
2018-10-17 21:28:25 +00:00
|
|
|
resolvedPath = this.resolveModule(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to resolve alias
|
2019-01-06 08:02:28 +00:00
|
|
|
if (!resolvedPath && isAlias !== false) {
|
2018-10-17 21:28:25 +00:00
|
|
|
resolvedPath = this.resolveAlias(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use path for resolvedPath
|
|
|
|
if (!resolvedPath) {
|
|
|
|
resolvedPath = path
|
|
|
|
}
|
|
|
|
|
2018-12-17 15:10:39 +00:00
|
|
|
let isDirectory
|
|
|
|
|
2018-12-13 18:39:42 +00:00
|
|
|
// Check if resolvedPath exits and is not a directory
|
2018-12-17 15:10:39 +00:00
|
|
|
if (fs.existsSync(resolvedPath)) {
|
|
|
|
isDirectory = fs.lstatSync(resolvedPath).isDirectory()
|
|
|
|
|
|
|
|
if (!isDirectory) {
|
|
|
|
return resolvedPath
|
|
|
|
}
|
2018-10-17 21:28:25 +00:00
|
|
|
}
|
|
|
|
|
2019-01-02 21:30:19 +00:00
|
|
|
const extensions = isStyle ? this.options.styleExtensions : this.options.extensions
|
|
|
|
|
2018-12-13 18:39:42 +00:00
|
|
|
// Check if any resolvedPath.[ext] or resolvedPath/index.[ext] exists
|
2019-01-02 21:30:19 +00:00
|
|
|
for (const ext of extensions) {
|
2018-12-17 15:10:39 +00:00
|
|
|
if (!isDirectory && fs.existsSync(resolvedPath + '.' + ext)) {
|
2018-10-17 21:28:25 +00:00
|
|
|
return resolvedPath + '.' + ext
|
|
|
|
}
|
2018-12-13 18:39:42 +00:00
|
|
|
|
2018-12-17 15:10:39 +00:00
|
|
|
if (isDirectory && fs.existsSync(resolvedPath + '/index.' + ext)) {
|
2018-12-13 18:39:42 +00:00
|
|
|
return resolvedPath + '/index.' + ext
|
|
|
|
}
|
2018-10-17 21:28:25 +00:00
|
|
|
}
|
|
|
|
|
2018-12-17 15:10:39 +00:00
|
|
|
// If there's no index.[ext] we just return the directory path
|
|
|
|
if (isDirectory) {
|
|
|
|
return resolvedPath
|
|
|
|
}
|
|
|
|
|
2018-10-17 21:28:25 +00:00
|
|
|
// Give up
|
|
|
|
throw new Error(`Cannot resolve "${path}" from "${resolvedPath}"`)
|
|
|
|
}
|
|
|
|
|
2019-02-01 13:08:47 +00:00
|
|
|
requireModule(path, { esm, useESM = esm, alias, isAlias = alias, intropDefault, interopDefault = intropDefault } = {}) {
|
2018-10-17 21:28:25 +00:00
|
|
|
let resolvedPath = path
|
|
|
|
let requiredModule
|
2019-01-06 08:02:28 +00:00
|
|
|
|
|
|
|
// TODO: Remove in Nuxt 3
|
2019-02-01 13:08:47 +00:00
|
|
|
if (intropDefault) {
|
|
|
|
consola.warn('Using intropDefault is deprecated and will be removed in Nuxt 3. Use `interopDefault` instead.')
|
|
|
|
}
|
2019-01-06 08:02:28 +00:00
|
|
|
if (alias) {
|
|
|
|
consola.warn('Using alias is deprecated and will be removed in Nuxt 3. Use `isAlias` instead.')
|
|
|
|
}
|
|
|
|
if (esm) {
|
|
|
|
consola.warn('Using esm is deprecated and will be removed in Nuxt 3. Use `useESM` instead.')
|
|
|
|
}
|
|
|
|
|
2019-01-04 19:30:28 +00:00
|
|
|
let lastError
|
2018-10-17 21:28:25 +00:00
|
|
|
|
|
|
|
// Try to resolve path
|
|
|
|
try {
|
2019-01-06 08:02:28 +00:00
|
|
|
resolvedPath = this.resolvePath(path, { isAlias })
|
2018-10-17 21:28:25 +00:00
|
|
|
} catch (e) {
|
2019-01-04 19:30:28 +00:00
|
|
|
lastError = e
|
|
|
|
}
|
|
|
|
|
2019-03-13 10:24:39 +00:00
|
|
|
// By default use esm only for js,mjs files outside of node_modules
|
|
|
|
if (useESM === undefined) {
|
|
|
|
useESM = /.(js|mjs)$/.test(resolvedPath) && !/node_modules/.test(resolvedPath)
|
2018-10-17 21:28:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Try to require
|
|
|
|
try {
|
2019-03-13 10:24:39 +00:00
|
|
|
if (useESM) {
|
2018-10-17 21:28:25 +00:00
|
|
|
requiredModule = this.esm(resolvedPath)
|
2019-03-13 10:24:39 +00:00
|
|
|
} else {
|
|
|
|
requiredModule = require(resolvedPath)
|
2018-10-17 21:28:25 +00:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2019-01-04 19:30:28 +00:00
|
|
|
lastError = e
|
2018-10-17 21:28:25 +00:00
|
|
|
}
|
|
|
|
|
2019-02-01 13:08:47 +00:00
|
|
|
// Interop default
|
|
|
|
if (interopDefault !== false && requiredModule && requiredModule.default) {
|
2018-10-17 21:28:25 +00:00
|
|
|
requiredModule = requiredModule.default
|
|
|
|
}
|
|
|
|
|
|
|
|
// Throw error if failed to require
|
2019-01-04 19:30:28 +00:00
|
|
|
if (requiredModule === undefined && lastError) {
|
|
|
|
throw lastError
|
2018-10-17 21:28:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return requiredModule
|
|
|
|
}
|
|
|
|
}
|