Skip to content

Commit eccd247

Browse files
authored
Update dependencies
1 parent 7be3f99 commit eccd247

File tree

5 files changed

+451
-637
lines changed

5 files changed

+451
-637
lines changed

bench/compare.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22
const path = require('path');
33
const fs = require('fs');
4-
const Table = require('cli-table2');
4+
const Table = require('cli-table3');
55
const chalk = require('chalk');
66

77
let files = fs.readdirSync(path.join(__dirname, '.results'))

docs/recipes/flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Translations: [Français](https://github.com/avajs/ava-docs/blob/master/fr_FR/do
44

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

7-
This guide assumes you've already set up Flow for your project. Note that AVA's definition as been tested with version 0.80.0.
7+
This guide assumes you've already set up Flow for your project. Note that AVA's definition as been tested with version 0.83.0.
88

99
We recommend you use AVA's built-in Babel pipeline to strip Flow type annotations and declarations. AVA automatically applies your project's Babel configuration, so everything may just work without changes. Alternatively install [`@babel/plugin-transform-flow-strip-types`](https://www.npmjs.com/package/@babel/plugin-transform-flow-strip-types) and customize AVA's configuration in the `package.json` file (or the `ava.config.js` file) as follows.
1010

docs/recipes/typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Translations: [Español](https://github.com/avajs/ava-docs/blob/master/es_ES/doc
44

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

7-
This guide assumes you've already set up TypeScript for your project. Note that AVA's definition has been tested with version 3.0.1.
7+
This guide assumes you've already set up TypeScript for your project. Note that AVA's definition has been tested with version 3.1.3.
88

99
## Configuring AVA to compile TypeScript files on the fly
1010

0 commit comments

Comments
 (0)