Skip to content

Commit 5ac55c4

Browse files
committed
refactor: replace fast-glob with tinyglobby
1 parent 164b690 commit 5ac55c4

File tree

4 files changed

+25
-8
lines changed

4 files changed

+25
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@
5454
"cac": "^6.7.14",
5555
"chokidar": "^3.6.0",
5656
"consola": "^3.2.3",
57-
"fast-glob": "^3.3.2",
5857
"picocolors": "^1.0.1",
5958
"pkg-types": "^1.1.3",
6059
"rolldown": "nightly",
60+
"tinyglobby": "^0.2.2",
6161
"unconfig": "^0.5.5",
6262
"unplugin-isolated-decl": "^0.4.5"
6363
},

pnpm-lock.yaml

Lines changed: 22 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/features/clean.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { readdir, rm } from 'node:fs/promises'
22
import path from 'node:path'
3-
import glob from 'fast-glob'
3+
import { glob } from 'tinyglobby'
44
import { fsExists } from '../utils/fs'
55
import { logger } from '../utils/logger'
66

src/features/entry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import glob from 'fast-glob'
1+
import { glob } from 'tinyglobby'
22
import { fsExists } from '../utils/fs'
33
import { logger } from '../utils/logger'
44
import type { Options } from '../options'

0 commit comments

Comments
 (0)