mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-08 02:33:02 +00:00
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
/** @typedef {import("./Resolver")} Resolver */
|
|
/** @typedef {import("./Resolver").ResolveStepHook} ResolveStepHook */
|
|
/** @typedef {string | string[] | false} Alias */
|
|
/** @typedef {{ alias: Alias, name: string, onlyModule?: boolean }} AliasOption */
|
|
|
|
const { aliasResolveHandler } = require("./AliasUtils");
|
|
|
|
module.exports = class AliasPlugin {
|
|
/**
|
|
* @param {string | ResolveStepHook} source source
|
|
* @param {AliasOption | AliasOption[]} options options
|
|
* @param {string | ResolveStepHook} target target
|
|
*/
|
|
constructor(source, options, target) {
|
|
this.source = source;
|
|
this.options = Array.isArray(options) ? options : [options];
|
|
this.target = target;
|
|
}
|
|
|
|
/**
|
|
* @param {Resolver} resolver the resolver
|
|
* @returns {void}
|
|
*/
|
|
apply(resolver) {
|
|
const target = resolver.ensureHook(this.target);
|
|
|
|
resolver
|
|
.getHook(this.source)
|
|
.tapAsync("AliasPlugin", (request, resolveContext, callback) => {
|
|
aliasResolveHandler(
|
|
resolver,
|
|
this.options,
|
|
target,
|
|
request,
|
|
resolveContext,
|
|
callback,
|
|
);
|
|
});
|
|
}
|
|
};
|