Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
teppeis committed Feb 17, 2020
1 parent 3378992 commit 1eb8024
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli.ts
Expand Up @@ -2,14 +2,14 @@ import flat from "array.prototype.flat";
import clc from "cli-color";
import commander from "commander";
import fs from "fs";
import globby from "globby";
import { parser as depsJsParser } from "google-closure-deps";
import difference from "lodash.difference";
import path from "path";
import { promisify } from "util";
import Logger, { LogOutput } from "./clilogger";
import { fixInPlace } from "./fix";
import { Parser } from "./parser";
import globby from "globby";

// Dont't use `import from` to avoid creating nested directory `./lib/src`.
// eslint-disable-next-line @typescript-eslint/no-var-requires
Expand Down Expand Up @@ -123,7 +123,7 @@ export function resolveConfig({

async function getFiles(args: string[]): Promise<string[]> {
return globby(args, {
expandDirectories: { files: ["*"], extensions: ["js"] },
expandDirectories: { extensions: ["js"] },
});
}

Expand Down

0 comments on commit 1eb8024

Please sign in to comment.