2025-03-24 22:56:10 +01:00

10 lines
306 B
JavaScript

'use strict';
const { createConsola } = require('consola/basic');
// match the default behavior of npm and node-gyp where stdout is reserved for output that is expected
// to be used programmatically (usually json)
const log = createConsola({ stdout: process.stderr });
module.exports = exports = log;