Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[6a3a178] | 1 | /*
|
---|
| 2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
---|
| 3 | Author Tobias Koppers @sokra
|
---|
| 4 | */
|
---|
| 5 |
|
---|
| 6 | "use strict";
|
---|
| 7 |
|
---|
| 8 | /** @typedef {import("./Resolver")} Resolver */
|
---|
| 9 | /** @typedef {import("./Resolver").ResolveStepHook} ResolveStepHook */
|
---|
| 10 |
|
---|
| 11 | module.exports = class AppendPlugin {
|
---|
| 12 | /**
|
---|
| 13 | * @param {string | ResolveStepHook} source source
|
---|
| 14 | * @param {string} appending appending
|
---|
| 15 | * @param {string | ResolveStepHook} target target
|
---|
| 16 | */
|
---|
| 17 | constructor(source, appending, target) {
|
---|
| 18 | this.source = source;
|
---|
| 19 | this.appending = appending;
|
---|
| 20 | this.target = target;
|
---|
| 21 | }
|
---|
| 22 |
|
---|
| 23 | /**
|
---|
| 24 | * @param {Resolver} resolver the resolver
|
---|
| 25 | * @returns {void}
|
---|
| 26 | */
|
---|
| 27 | apply(resolver) {
|
---|
| 28 | const target = resolver.ensureHook(this.target);
|
---|
| 29 | resolver
|
---|
| 30 | .getHook(this.source)
|
---|
| 31 | .tapAsync("AppendPlugin", (request, resolveContext, callback) => {
|
---|
| 32 | const obj = {
|
---|
| 33 | ...request,
|
---|
| 34 | path: request.path + this.appending,
|
---|
| 35 | relativePath:
|
---|
| 36 | request.relativePath && request.relativePath + this.appending
|
---|
| 37 | };
|
---|
| 38 | resolver.doResolve(
|
---|
| 39 | target,
|
---|
| 40 | obj,
|
---|
| 41 | this.appending,
|
---|
| 42 | resolveContext,
|
---|
| 43 | callback
|
---|
| 44 | );
|
---|
| 45 | });
|
---|
| 46 | }
|
---|
| 47 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.