Pin chalk to ^4.1 (#46985)

* Pin chalk to ^4.1

* Revert #46931
This commit is contained in:
Ron Buckton
2021-12-02 11:05:17 -08:00
committed by GitHub
parent 670ad45bda
commit c792a66065
4 changed files with 11 additions and 19 deletions

View File

@@ -1,4 +1,5 @@
// @ts-check
const chalk = require("chalk");
const { join } = require("path");
const { readFileSync } = require("fs");
try {
@@ -17,7 +18,6 @@ const playwright = require("playwright");
const debugging = false;
(async () => {
const chalk = (await import("chalk")).default;
for (const browserType of ["chromium", "firefox"]) {
const browser = await playwright[browserType].launch({ headless: !debugging });
const context = await browser.newContext();

View File

@@ -8,6 +8,7 @@ const mkdirp = require("mkdirp");
const del = require("del");
const File = require("vinyl");
const ts = require("../../lib/typescript");
const chalk = require("chalk");
const which = require("which");
const { spawn } = require("child_process");
const { CancellationToken, CancelError, Deferred } = require("prex");
@@ -26,7 +27,6 @@ const { Readable, Duplex } = require("stream");
* @property {boolean} [waitForExit=true]
*/
async function exec(cmd, args, options = {}) {
const chalk = (await import("chalk")).default;
return /**@type {Promise<{exitCode: number}>}*/(new Promise((resolve, reject) => {
const { ignoreExitCode, cancelToken = CancellationToken.none, waitForExit = true } = options;
cancelToken.throwIfCancellationRequested();