|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
743 bytes
|
| Line | |
|---|
| 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("./config/defaults").WebpackOptionsNormalizedWithDefaults} WebpackOptions */
|
|---|
| 9 | /** @typedef {import("./config/normalization").WebpackOptionsInterception} WebpackOptionsInterception */
|
|---|
| 10 | /** @typedef {import("./Compiler")} Compiler */
|
|---|
| 11 |
|
|---|
| 12 | class OptionsApply {
|
|---|
| 13 | /**
|
|---|
| 14 | * Returns options object.
|
|---|
| 15 | * @param {WebpackOptions} options options object
|
|---|
| 16 | * @param {Compiler} compiler compiler object
|
|---|
| 17 | * @param {WebpackOptionsInterception=} interception intercepted options
|
|---|
| 18 | * @returns {WebpackOptions} options object
|
|---|
| 19 | */
|
|---|
| 20 | process(options, compiler, interception) {
|
|---|
| 21 | return options;
|
|---|
| 22 | }
|
|---|
| 23 | }
|
|---|
| 24 |
|
|---|
| 25 | module.exports = OptionsApply;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.