mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
443 B
JavaScript
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;
|