webpack/lib/OptionsApply.js

23 lines
523 B
JavaScript
Raw Normal View History

2013-01-31 01:49:25 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
2018-07-30 23:08:51 +08:00
2017-02-22 15:59:58 +08:00
"use strict";
2015-04-24 05:55:50 +08:00
2024-10-24 11:02:20 +08:00
/** @typedef {import("../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptions */
/** @typedef {import("./Compiler")} Compiler */
2017-02-22 15:59:58 +08:00
class OptionsApply {
2024-10-24 11:02:20 +08:00
/**
* @param {WebpackOptions} options options object
* @param {Compiler} compiler compiler object
* @returns {WebpackOptions} options object
*/
process(options, compiler) {
return options;
}
2017-02-22 15:59:58 +08:00
}
2024-10-24 11:02:20 +08:00
2017-02-22 15:59:58 +08:00
module.exports = OptionsApply;