Skip to content

Commit

Permalink
Fix for the default import of strip-ansi (#6599)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesdaniels committed Dec 8, 2023
1 parent 36c99a6 commit 9842b8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Fix Next.js dynamic and static OG images. (#6592)
- Address a regression introduced in 13.0.1 when emulating Vite applications. (#6599)
2 changes: 1 addition & 1 deletion src/frameworks/vite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { spawn } from "cross-spawn";
import { existsSync } from "fs";
import { copy, pathExists } from "fs-extra";
import { join } from "path";
import stripAnsi from "strip-ansi";
const stripAnsi = require("strip-ansi");
import { FrameworkType, SupportLevel } from "../interfaces";
import { promptOnce } from "../../prompt";
import {
Expand Down

0 comments on commit 9842b8d

Please sign in to comment.