* Builds the module using the provided compilation context. * @abstract * @param {WebpackOptions} options webpack options * @param {Compilation} compilation the compilation * @param {ResolverWithOptions} resolver the resolver * @param {InputFileSystem} fs the file system * @param {BuildC
(options, compilation, resolver, fs, callback)
| 1031 | * @returns {void} |
| 1032 | */ |
| 1033 | build(options, compilation, resolver, fs, callback) { |
| 1034 | const AbstractMethodError = require("./errors/AbstractMethodError"); |
| 1035 | |
| 1036 | throw new AbstractMethodError(); |
| 1037 | } |
| 1038 | |
| 1039 | /** |
| 1040 | * Returns the source types this module can generate. |
no test coverage detected