Skip to content

Commit ace2a31

Browse files
renovate[bot]renovate-botRyanZim
authored
Update dependency globby to v12 (#386)
* Update dependency globby to v12 * Use named imports Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Ryan Zimmerman <[email protected]>
1 parent 9d77003 commit ace2a31

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import prettyHrtime from 'pretty-hrtime'
77
import stdin from 'get-stdin'
88
import read from 'read-cache'
99
import { bold, dim, red, cyan, green } from 'colorette'
10-
import globber from 'globby'
10+
import { globby } from 'globby'
1111
import slash from 'slash'
1212
import chokidar from 'chokidar'
1313

@@ -78,7 +78,7 @@ buildCliConfig()
7878
}
7979

8080
if (input && input.length) {
81-
return globber(
81+
return globby(
8282
input.map((i) => slash(String(i))),
8383
{ dot: argv.includeDotfiles }
8484
)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"dependency-graph": "^0.11.0",
2424
"fs-extra": "^10.0.0",
2525
"get-stdin": "^9.0.0",
26-
"globby": "^11.0.0",
26+
"globby": "^12.0.0",
2727
"postcss-load-config": "^3.0.0",
2828
"postcss-reporter": "^7.0.0",
2929
"pretty-hrtime": "^1.0.3",

test/helpers/env.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import fs from 'fs-extra'
22
import path from 'path'
3-
import globby from 'globby'
3+
import { globby } from 'globby'
44

55
import tmp from './tmp.js'
66

0 commit comments

Comments
 (0)