Fix dependabot issues

This commit is contained in:
Andrew Eisenberg 2021-10-21 15:24:20 -07:00
parent c89d9bd8b0
commit 531c6ba7c8
705 changed files with 53406 additions and 20466 deletions

7
node_modules/log-symbols/index.js generated vendored
View file

@ -1,7 +1,6 @@
'use strict';
const chalk = require('chalk');
const isSupported = process.platform !== 'win32' || process.env.CI || process.env.TERM === 'xterm-256color';
const isUnicodeSupported = require('is-unicode-supported');
const main = {
info: chalk.blue(''),
@ -10,11 +9,11 @@ const main = {
error: chalk.red('✖')
};
const fallbacks = {
const fallback = {
info: chalk.blue('i'),
success: chalk.green('√'),
warning: chalk.yellow('‼'),
error: chalk.red('×')
};
module.exports = isSupported ? main : fallbacks;
module.exports = isUnicodeSupported() ? main : fallback;