first commit
This commit is contained in:
18
build/node_modules/log-symbols/index.js
generated
vendored
Normal file
18
build/node_modules/log-symbols/index.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
'use strict';
|
||||
var chalk = require('chalk');
|
||||
|
||||
var main = {
|
||||
info: chalk.blue('ℹ'),
|
||||
success: chalk.green('✔'),
|
||||
warning: chalk.yellow('⚠'),
|
||||
error: chalk.red('✖')
|
||||
};
|
||||
|
||||
var win = {
|
||||
info: chalk.blue('i'),
|
||||
success: chalk.green('√'),
|
||||
warning: chalk.yellow('‼'),
|
||||
error: chalk.red('×')
|
||||
};
|
||||
|
||||
module.exports = process.platform === 'win32' ? win : main;
|
||||
Reference in New Issue
Block a user