MyCrypto/webpack_config/plugins/serverLog.js

21 lines
471 B
JavaScript
Raw Permalink Normal View History

2017-07-03 20:28:56 -07:00
'use strict';
const chalk = require('chalk');
// this plugin if for loggin url after each time the compilation is done.
module.exports = class LogPlugin {
constructor(port) {
2017-07-03 20:28:56 -07:00
this.port = port;
}
apply(compiler) {
const protocol = process.env.HTTPS ? 'https' : 'http';
compiler.plugin('done', () => {
2017-07-03 20:28:56 -07:00
console.log(
`> App is running at ${chalk.yellow(
`${protocol}://localhost:${this.port}`
)}\n`
2017-07-03 20:28:56 -07:00
);
});
}
2017-07-03 20:28:56 -07:00
};