Skip to content

Commit 0154a7f

Browse files
authored
Bump dependencies
1 parent 9406470 commit 0154a7f

File tree

5 files changed

+202
-162
lines changed

5 files changed

+202
-162
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ matrix:
2424
- node_js: 6
2525
os: windows # npm install --global currently fails on Windows. Skip the tests entirely instead.
2626
cache: npm
27-
before_install: if [[ "$(npm -v)" != "6.6.0" ]] && [[ "${TRAVIS_OS_NAME}" != "windows" ]]; then npm install --global npm@6.6.0; fi
27+
before_install: if [[ "$(npm -v)" != "6.9.0" ]] && [[ "${TRAVIS_OS_NAME}" != "windows" ]]; then npm install --global npm@6.9.0; fi
2828
install: npm ci
2929
before_script: |
3030
if [[ ${FRESH_DEPS} == "true" ]]; then

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

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

0 commit comments

Comments
 (0)