Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix vite-ecosystem-ci integration #8997

Merged
merged 9 commits into from
Mar 8, 2024
Merged
Prev Previous commit
Next Next commit
fix types
markdalgleish committed Mar 7, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 3164e2a790d187e4f0fc60e8048e18d5ac2a3eab
4 changes: 2 additions & 2 deletions packages/remix-dev/vite/babel.ts
Original file line number Diff line number Diff line change
@@ -5,9 +5,9 @@ import { parse } from "@babel/parser";
import * as t from "@babel/types";

const traverse = require("@babel/traverse")
.default as typeof import("@babel/traverse");
.default as typeof import("@babel/traverse").default;
const generate = require("@babel/generator")
.default as typeof import("@babel/generator");
.default as typeof import("@babel/generator").default;

export { traverse, generate, parse, t };
export type { BabelTypes, NodePath };