We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1243faa commit 62cff3cCopy full SHA for 62cff3c
1 file changed
src/startup/workspaceSafety.ts
@@ -8,6 +8,7 @@
8
import os from 'os';
9
import path from 'path';
10
import fs from 'fs-extra';
11
+import chalk from 'chalk';
12
13
export interface WorkspaceSafetyResult {
14
safe: boolean;
@@ -345,8 +346,6 @@ export function printDangerousWorkspaceWarning(
345
346
workspacePath: string,
347
result: WorkspaceSafetyResult
348
): void {
- const chalk = require('chalk');
349
-
350
const boxWidth = 65;
351
const horizontalLine = '─'.repeat(boxWidth - 2);
352
0 commit comments