UNPKG

332 BJavaScriptView Raw
1///@ts-check
2'use strict';
3var colors = require('ansi-colors');
4var log = require('../log/logger');
5
6/**
7 * @param {string} name
8 */
9module.exports = function (name, files) {
10 process.env.SKIP_ERROR = 'true';
11 return log.info(
12 colors.magentaBright(name + '-watch:'),
13 colors.underline.blueBright(files)
14 );
15}
\No newline at end of file