-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresolver.mjs
36 lines (31 loc) · 1.38 KB
/
resolver.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { fileURLToPath } from 'url';
import { dirname, resolve as resolvePath } from 'path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const folders = ['plugins', 'utils', 'schemas'];
/**
* @param {string} specifier
* @param {object} context
* @param {string} context.parentURL
* @param {string[]} context.conditions
* @param {function} defaultResolve
* @returns {object} response
* @returns {string} response.url
*/
export async function resolve(specifier, context, defaultResolve) {
const foldersRegExp = new RegExp(`^@(${folders.join('|')})\/`,'igm');
// I add this so I may drop .mjs extension for imports that start with a dot or @utils/
if ((foldersRegExp.test(specifier) || /^\./igm.test(specifier)) && !/.mjs$/igm.test(specifier)) {
specifier = `${specifier}.mjs`;
}
// If import starts with @root/ I need replace it with real path to project root
if (/^@root\//igm.test(specifier)) {
specifier = specifier.replace(/^@root\//igm, `${__dirname}/`);
}
// Aliases for root directories, defined in the folders variable
specifier = folders.reduce((specifier, path) => {
const pathRegExp = new RegExp(`^@${path}/`,'igm');
return (pathRegExp.test(specifier) && specifier.replace(pathRegExp, `${resolvePath(__dirname, path)}/`)) || specifier;
}, specifier);
return defaultResolve(specifier, context, defaultResolve);
}