source: imaps-frontend/node_modules/webpack/lib/OptionsApply.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 523 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("../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptions */
9/** @typedef {import("./Compiler")} Compiler */
10
11class OptionsApply {
12 /**
13 * @param {WebpackOptions} options options object
14 * @param {Compiler} compiler compiler object
15 * @returns {WebpackOptions} options object
16 */
17 process(options, compiler) {
18 return options;
19 }
20}
21
22module.exports = OptionsApply;
Note: See TracBrowser for help on using the repository browser.