Skip to content

Commit 0a0603b

Browse files
committed
fix(esm): impolite to curse in a git commit
1 parent ec3482e commit 0a0603b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/bin/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import path from 'path';
44
import * as url from 'url';
55

66
import * as colors from 'ansi-colors';
7-
import * as fastglob from 'fast-glob';
7+
import fastGlob from 'fast-glob';
88
// eslint-disable-next-line import/order -- what the actual heck, this rule bounces
99
import parser from 'yargs-parser';
1010

@@ -188,7 +188,8 @@ async function main() {
188188
}
189189

190190
// handle local schema(s)
191-
const inputSpecPaths = await fastglob.glob(pathToSpec);
191+
// eslint-disable-next-line import/no-named-as-default-member
192+
const inputSpecPaths = await fastGlob.glob(pathToSpec);
192193
const isGlob = inputSpecPaths.length > 1;
193194

194195
// error: no matches for glob

0 commit comments

Comments
 (0)