Update ava to 4.3.3

The [release notes](https://github.com/avajs/ava/releases/tag/v4.3.3)
mention compatibility with Node 18.8.
This commit is contained in:
Henry Mercer 2022-09-02 18:02:07 +01:00
parent 21530f507f
commit bea5e4b220
160 changed files with 2647 additions and 2263 deletions

11
node_modules/ci-info/CHANGELOG.md generated vendored
View file

@ -1,5 +1,14 @@
# Changelog
## v3.3.2
- fix: export correct typings for `EAS`
## v3.3.1
- fix: export `EAS_BUILD` constant in typings
- Add support for nodejs v18
## v3.3.0
- support Expo Application Services ([#70](https://github.com/watson/ci-info/pull/70))
@ -9,7 +18,7 @@
- support LayerCI ([#68](https://github.com/watson/ci-info/pull/68))
- support Appcircle ([#69](https://github.com/watson/ci-info/pull/69))
- support Codefresh CI ([#65](https://github.com/watson/ci-info/pull/65))
- Add support for nodejs v16
- add support for nodejs v16
## v3.1.1

1
node_modules/ci-info/index.d.ts generated vendored
View file

@ -39,6 +39,7 @@ export const CODEFRESH: boolean;
export const CODESHIP: boolean;
export const DRONE: boolean;
export const DSARI: boolean;
export const EAS: boolean;
export const GITHUB_ACTIONS: boolean;
export const GITLAB: boolean;
export const GOCD: boolean;

4
node_modules/ci-info/index.js generated vendored
View file

@ -6,7 +6,9 @@ const env = process.env
// Used for testing only
Object.defineProperty(exports, '_vendors', {
value: vendors.map(function (v) { return v.constant })
value: vendors.map(function (v) {
return v.constant
})
})
exports.name = null

23
node_modules/ci-info/package.json generated vendored
View file

@ -1,18 +1,13 @@
{
"name": "ci-info",
"version": "3.3.0",
"version": "3.3.2",
"description": "Get details about the current Continuous Integration environment",
"main": "index.js",
"typings": "index.d.ts",
"author": "Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/watson/ci-info.git"
},
"bugs": {
"url": "https://github.com/watson/ci-info/issues"
},
"repository": "https://github.com/watson/ci-info.git",
"bugs": "https://github.com/watson/ci-info/issues",
"homepage": "https://github.com/watson/ci-info",
"keywords": [
"ci",
@ -21,16 +16,18 @@
"test",
"detect"
],
"coordinates": [
55.778231,
12.593179
"files": [
"vendors.json",
"index.js",
"index.d.ts",
"CHANGELOG.md"
],
"scripts": {
"test": "standard && node test.js"
},
"devDependencies": {
"clear-module": "^4.1.2",
"standard": "^16.0.4",
"tape": "^5.3.2"
"standard": "^17.0.0",
"tape": "^5.5.3"
}
}