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 */
|
|
|
|
|
2020-09-10 16:42:29 +08:00
|
|
|
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}
|
|
|
|
*/
|
2020-09-10 16:42:29 +08:00
|
|
|
apply(compiler) {}
|
|
|
|
}
|
2018-12-05 21:49:36 +08:00
|
|
|
|
2020-09-10 16:42:29 +08:00
|
|
|
module.exports = NodeSourcePlugin;
|