(module)
| 74 | * @returns {string} the (portable) identifier |
| 75 | */ |
| 76 | const getModuleIdentifier = (module) => { |
| 77 | if (portableIds) { |
| 78 | return makePathsRelative(module.identifier()); |
| 79 | } |
| 80 | return module.identifier(); |
| 81 | }; |
| 82 | |
| 83 | compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => { |
| 84 | compilation.hooks.recordModules.tap(PLUGIN_NAME, (modules, records) => { |
nothing calls this directly
no test coverage detected