Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
novemberborn committed Jul 8, 2019
1 parent 2dae2bf commit e528ad2
Show file tree
Hide file tree
Showing 5 changed files with 1,981 additions and 1,328 deletions.
2 changes: 1 addition & 1 deletion docs/recipes/typescript.md
Expand Up @@ -4,7 +4,7 @@ Translations: [Espa帽ol](https://github.com/avajs/ava-docs/blob/master/es_ES/doc

AVA comes bundled with a TypeScript definition file. This allows developers to leverage TypeScript for writing tests.

This guide assumes you've already set up TypeScript for your project. Note that AVA's definition has been tested with version 3.5.1.
This guide assumes you've already set up TypeScript for your project. Note that AVA's definition has been tested with version 3.5.2.

## Configuring AVA to compile TypeScript files on the fly

Expand Down
8 changes: 4 additions & 4 deletions lib/globs.js
Expand Up @@ -98,17 +98,17 @@ exports.hasExtension = hasExtension;
const findFiles = async (cwd, patterns) => {
const files = await globby(patterns, {
absolute: true,
brace: true,
case: false,
braceExpansion: true,
caseSensitiveMatch: false,
cwd,
dot: false,
expandDirectories: false,
extglob: true,
followSymlinkedDirectories: true,
followSymbolicLinks: true,
gitignore: false,
globstar: true,
ignore: defaultIgnorePatterns,
matchBase: false,
baseNameMatch: false,
onlyFiles: true,
stats: false,
unique: true
Expand Down

0 comments on commit e528ad2

Please sign in to comment.