Skip to content

Commit

Permalink
fix(eslint-plugin): fix runtime error caused by incorrect chalk import
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlewis92 authored Nov 13, 2023
1 parent c7c845d commit 07ccc2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/utils/project-graph-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
readCachedProjectGraph,
} from '@nx/devkit';
import { isTerminalRun } from './runtime-lint-utils';
import * as chalk from 'chalk';
import chalk from 'chalk';
import {
createProjectRootMappings,
ProjectRootMappings,
Expand Down

0 comments on commit 07ccc2d

Please sign in to comment.