test02/node_modules/execa/lib/verbose/start.js
罗佳鸿 6aa1ebe342
Some checks are pending
部署文档 / deploy-gh-pages (push) Waiting to run
first commit
2024-08-13 10:11:19 +08:00

16 lines
335 B
JavaScript

import {isVerbose} from './values.js';
import {verboseLog} from './log.js';
// When `verbose` is `short|full|custom`, print each command
export const logCommand = (escapedCommand, verboseInfo) => {
if (!isVerbose(verboseInfo)) {
return;
}
verboseLog({
type: 'command',
verboseMessage: escapedCommand,
verboseInfo,
});
};