/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
tools/e2e-tests/apps/react/plugins/CustomConsoleLogPlugin.js
14 строк
443 B
Nacho Codoñer
rename modern references on tests to e2e, like ./tools/e2e-tests/apps, create-app:e2e and etc
03 мар 2026, 15:06
03 мар 2026, 15:06
008bd95
Код
Авторство
О чём код?
// 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;