Skip to content

Commit 84d8fff

Browse files
authored
Bump dependencies & update documentation
1 parent c1364a1 commit 84d8fff

File tree

7 files changed

+268
-217
lines changed

7 files changed

+268
-217
lines changed

docs/recipes/babelrc.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,3 @@
33
Translations: [Français](https://github.com/avajs/ava-docs/blob/master/fr_FR/docs/recipes/babelrc.md)
44

55
This recipe has moved. Please see our [new Babel recipe](babel.md).
6-
7-
---
8-
9-
If you're using an older AVA version, please see [version 0.25.0 of this recipe](https://github.com/avajs/ava/blob/v0.25.0/docs/recipes/babelrc.md).

docs/recipes/debugging-with-webstorm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Your `package.json` will look something like this:
3030
"test": "ava"
3131
},
3232
"devDependencies": {
33-
"ava": "^0.20.0"
33+
"ava": "^1.0.0"
3434
}
3535
}
3636
```

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.86.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.89.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.1.6.
7+
This guide assumes you've already set up TypeScript for your project. Note that AVA's definition has been tested with version 3.2.2.
88

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

0 commit comments

Comments
 (0)