webpack/lib/node/NodeSourcePlugin.js

20 lines
353 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-05-07 02:41:26 +08:00
"use strict";
2018-07-03 16:24:29 +08:00
2018-11-09 05:59:19 +08:00
/** @typedef {import("../Compiler")} Compiler */
class NodeSourcePlugin {
2018-11-09 05:59:19 +08:00
/**
2020-04-23 16:48:36 +08:00
* Apply the plugin
2018-11-09 05:59:19 +08:00
* @param {Compiler} compiler the compiler instance
* @returns {void}
*/
apply(compiler) {}
}
module.exports = NodeSourcePlugin;