Files
meteor/tools/modern-tests/apps/react/plugins/CustomConsoleLogPlugin.js

15 lines
443 B
JavaScript

// CustomConsoleLogPlugin.js
class CustomConsoleLogPlugin {
apply(compiler) {
compiler.hooks.beforeRun.tap('CustomConsoleLogPlugin', (compilation) => {
console.log('👉 [CustomConsoleLogPlugin] Build is starting...');
});
compiler.hooks.done.tap('CustomConsoleLogPlugin', (stats) => {
console.log('✅ [CustomConsoleLogPlugin] Build finished successfully!');
});
}
}
module.exports = CustomConsoleLogPlugin;