Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 242536e

Browse files
committed
fix(compiler/src/index): fast-glob import to require
1 parent b15a973 commit 242536e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { createBuildIn } from '../../src/core/method/create-build-in-helper';
55
import { setBuildIn } from '../../src/core/method/set-build-in-helper';
66
import { globalBuildIn } from '../../src/core/method/global-build-in-helper';
77
import { rootBuildIn } from '../../src/core/method/root-build-in-helper';
8-
import fg = require('fast-glob');
8+
// eslint-disable-next-line @typescript-eslint/no-var-requires
9+
const fg = require('fast-glob');
910

1011
(async () => {
1112
await cleanUp();

0 commit comments

Comments
 (0)