Skip to content

Commit

Permalink
fix(cli): ignore gitignored files
Browse files Browse the repository at this point in the history
Closes #113
  • Loading branch information
eventualbuddha committed Jul 1, 2018
1 parent 00ae598 commit 9697c85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
"@types/tmp": "^0.0.33",
"commitlint": "^7.0.0",
"get-port": "^3.2.0",
"globby": "^8.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.3",
"make-dir": "^1.3.0",
Expand All @@ -77,7 +76,7 @@
"@babel/traverse": "^7.0.0-beta.49",
"@babel/types": "^7.0.0-beta.49",
"get-stream": "^3.0.0",
"glob": "^7.1.2",
"globby": "^8.0.1",
"got": "^8.3.1",
"mz": "^2.7.0",
"pirates": "^3.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/Options.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { existsSync, readFileSync } from 'fs';
import { hasMagic as hasGlob, sync as globSync } from 'glob';
import { hasMagic as hasGlob, sync as globSync } from 'globby';
import { resolve } from 'path';
import { sync as resolveSync } from 'resolve';
import Config, { ConfigBuilder, Printer } from './Config';
Expand Down

0 comments on commit 9697c85

Please sign in to comment.