Skip to content

Commit 0e175ad

Browse files
authored
Update npm dependencies to latest (#1230)
1 parent 42e70a1 commit 0e175ad

File tree

3 files changed

+667
-485
lines changed

3 files changed

+667
-485
lines changed

docs-search/index/src/Docs/Search/IndexBuilder.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import globMain from "glob";
1+
import { globSync } from "glob";
22
import path from "node:path";
33
import { fileURLToPath } from "node:url";
44

@@ -21,6 +21,6 @@ export function getDocsSearchAppPath() {
2121

2222
export function glob(pattern) {
2323
return function () {
24-
return globMain.sync(pattern);
24+
return globSync(pattern);
2525
};
2626
}

0 commit comments

Comments
 (0)