Require Node.js 12 and move to ESM

This commit is contained in:
Sindre Sorhus 2021-04-16 15:23:29 +07:00
parent 4dab5e1fb6
commit fa16f4ec37
22 changed files with 362 additions and 412 deletions

View file

@ -1,9 +1,8 @@
import test from 'ava';
import chalk from '../source/index.js';
// Spoof supports-color
require('./_supports-color')(__dirname);
const chalk = require('../source');
chalk.level = 3;
chalk.stderr.level = 3;
console.log('TERM:', process.env.TERM || '[none]');
console.log('platform:', process.platform || '[unknown]');