We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec3482e commit 0a0603bCopy full SHA for 0a0603b
src/bin/index.ts
@@ -4,7 +4,7 @@ import path from 'path';
4
import * as url from 'url';
5
6
import * as colors from 'ansi-colors';
7
-import * as fastglob from 'fast-glob';
+import fastGlob from 'fast-glob';
8
// eslint-disable-next-line import/order -- what the actual heck, this rule bounces
9
import parser from 'yargs-parser';
10
@@ -188,7 +188,8 @@ async function main() {
188
}
189
190
// handle local schema(s)
191
- const inputSpecPaths = await fastglob.glob(pathToSpec);
+ // eslint-disable-next-line import/no-named-as-default-member
192
+ const inputSpecPaths = await fastGlob.glob(pathToSpec);
193
const isGlob = inputSpecPaths.length > 1;
194
195
// error: no matches for glob
0 commit comments