This commit is contained in:
David Kale
2020-09-08 13:25:36 -04:00
parent e4246d2b5b
commit 91fcbb0108
4227 changed files with 416837 additions and 457884 deletions

23
node_modules/jest/LICENSE generated vendored
View File

@@ -1,23 +0,0 @@
MIT License
For Jest software
Copyright (c) 2014-present, Facebook, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,23 +0,0 @@
MIT License
For Jest software
Copyright (c) 2014-present, Facebook, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -41,7 +41,7 @@ export declare const check: (argv: import("yargs").Arguments<Partial<{
json: boolean;
lastCommit: boolean;
logHeapUsage: boolean;
maxWorkers: number;
maxWorkers: string | number;
moduleDirectories: string[];
moduleFileExtensions: string[];
moduleNameMapper: string;
@@ -78,6 +78,7 @@ export declare const check: (argv: import("yargs").Arguments<Partial<{
testRunner: string;
testSequencer: string;
testURL: string;
testTimeout: number | null | undefined;
timers: string;
transform: string;
transformIgnorePatterns: string[];
@@ -97,6 +98,7 @@ export declare const options: {
all: {
default: undefined;
description: string;
type: "boolean";
};
automock: {
default: undefined;
@@ -107,6 +109,7 @@ export declare const options: {
alias: string;
default: undefined;
description: string;
type: "boolean";
};
browser: {
default: undefined;
@@ -297,7 +300,7 @@ export declare const options: {
maxWorkers: {
alias: string;
description: string;
type: "number";
type: "string";
};
moduleDirectories: {
description: string;
@@ -505,6 +508,10 @@ export declare const options: {
description: string;
type: "string";
};
testTimeout: {
description: string;
type: "number";
};
testURL: {
description: string;
type: "string";

View File

@@ -1 +1 @@
{"version":3,"file":"args.d.ts","sourceRoot":"","sources":["../../src/cli/args.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;;AAMH,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eAmDjB,CAAC;AAEF,eAAO,MAAM,KAAK,8DAC2C,CAAC;AAC9D,eAAO,MAAM,IAAI,sCAAsC,CAAC;AAExD,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqoBnB,CAAC"}
{"version":3,"file":"args.d.ts","sourceRoot":"","sources":["../../src/cli/args.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;;AAMH,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eAoDjB,CAAC;AAEF,eAAO,MAAM,KAAK,8DAC2C,CAAC;AAC9D,eAAO,MAAM,IAAI,sCAAsC,CAAC;AAExD,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2oBnB,CAAC"}

View File

@@ -72,8 +72,9 @@ const check = argv => {
if (argv.hasOwnProperty('maxWorkers') && argv.maxWorkers === undefined) {
throw new Error(
'The --maxWorkers (-w) option requires a number to be specified.\n' +
'The --maxWorkers (-w) option requires a number or string to be specified.\n' +
'Example usage: jest --maxWorkers 2\n' +
'Example usage: jest --maxWorkers 50%\n' +
'Or did you mean --watch?'
);
}
@@ -103,7 +104,8 @@ const options = {
description:
'The opposite of `onlyChanged`. If `onlyChanged` is set by ' +
'default, running jest with `--all` will force Jest to run all tests ' +
'instead of running only tests related to changed files.'
'instead of running only tests related to changed files.',
type: 'boolean'
},
automock: {
default: undefined,
@@ -114,7 +116,8 @@ const options = {
alias: 'b',
default: undefined,
description:
'Exit the test suite immediately after `n` number of failing tests.'
'Exit the test suite immediately after `n` number of failing tests.',
type: 'boolean'
},
browser: {
default: undefined,
@@ -380,7 +383,7 @@ const options = {
'will spawn for running tests. This defaults to the number of the ' +
'cores available on your machine. (its usually best not to override ' +
'this default)',
type: 'number'
type: 'string'
},
moduleDirectories: {
description:
@@ -653,6 +656,10 @@ const options = {
'provided: `<rootDir>/path/to/testSequencer.js`',
type: 'string'
},
testTimeout: {
description: 'This option sets the default timeouts of test cases.',
type: 'number'
},
testURL: {
description: 'This option sets the URL for the jsdom environment.',
type: 'string'

View File

@@ -43,7 +43,7 @@ export declare const buildArgv: (maybeArgv?: string[] | undefined) => yargs.Argu
json: boolean;
lastCommit: boolean;
logHeapUsage: boolean;
maxWorkers: number;
maxWorkers: string | number;
moduleDirectories: string[];
moduleFileExtensions: string[];
moduleNameMapper: string;
@@ -80,6 +80,7 @@ export declare const buildArgv: (maybeArgv?: string[] | undefined) => yargs.Argu
testRunner: string;
testSequencer: string;
testURL: string;
testTimeout: number | null | undefined;
timers: string;
transform: string;
transformIgnorePatterns: string[];

View File

@@ -1 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/cli/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,EAAC,MAAM,EAAC,MAAM,aAAa,CAAC;AAQnC,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,wBAAsB,GAAG,CAAC,SAAS,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,IAAI,iBAoBzE;AAED,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCrB,CAAC"}
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/cli/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,EAAC,MAAM,EAAC,MAAM,aAAa,CAAC;AAQnC,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,wBAAsB,GAAG,CAAC,SAAS,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,IAAI,iBAyBzE;AAED,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCrB,CAAC"}

View File

@@ -98,8 +98,6 @@ function _realpathNative() {
var _init = _interopRequireDefault(require('../init'));
var _version = _interopRequireDefault(require('../version'));
var args = _interopRequireWildcard(require('./args'));
function _interopRequireWildcard(obj) {
@@ -219,7 +217,13 @@ function _run() {
} catch (error) {
(0, _jestUtil().clearLine)(process.stderr);
(0, _jestUtil().clearLine)(process.stdout);
console.error(_chalk().default.red(error.stack));
if (error.stack) {
console.error(_chalk().default.red(error.stack));
} else {
console.error(_chalk().default.red(error));
}
(0, _exit().default)(1);
throw error;
}
@@ -229,7 +233,7 @@ function _run() {
const buildArgv = maybeArgv => {
const version =
(0, _version.default)() +
(0, _core().getVersion)() +
(__dirname.includes(`packages${_path().default.sep}jest-cli`)
? '-dev'
: '');

View File

@@ -5,9 +5,8 @@
* LICENSE file in the root directory of this source tree.
*/
/// <reference types="yargs" />
import { SearchSource, TestScheduler, TestWatcher } from '@jest/core';
import { getVersion, SearchSource, TestScheduler, TestWatcher } from '@jest/core';
import { run } from './cli';
import { default as getVersion } from './version';
declare const _default: {
SearchSource: typeof SearchSource;
TestScheduler: typeof TestScheduler;
@@ -50,7 +49,7 @@ declare const _default: {
json: boolean;
lastCommit: boolean;
logHeapUsage: boolean;
maxWorkers: number;
maxWorkers: string | number;
moduleDirectories: string[];
moduleFileExtensions: string[];
moduleNameMapper: string;
@@ -87,6 +86,7 @@ declare const _default: {
testRunner: string;
testSequencer: string;
testURL: string;
testTimeout: number | null | undefined;
timers: string;
transform: string;
transformIgnorePatterns: string[];

View File

@@ -1 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;;AAGH,OAAO,EAAS,YAAY,EAAE,aAAa,EAAE,WAAW,EAAC,MAAM,YAAY,CAAC;AAC5E,OAAO,EAAC,GAAG,EAAC,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAC,OAAO,IAAI,UAAU,EAAC,MAAM,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEhD,kBAOE"}
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;;AAGH,OAAO,EACL,UAAU,EAEV,YAAY,EACZ,aAAa,EACb,WAAW,EACZ,MAAM,YAAY,CAAC;AACpB,OAAO,EAAC,GAAG,EAAC,MAAM,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE1B,kBAOE"}

View File

@@ -12,12 +12,6 @@ function _core() {
var _cli = require('./cli');
var _version = _interopRequireDefault(require('./version'));
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {default: obj};
}
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
@@ -29,7 +23,7 @@ module.exports = {
SearchSource: _core().SearchSource,
TestScheduler: _core().TestScheduler,
TestWatcher: _core().TestWatcher,
getVersion: _version.default,
getVersion: _core().getVersion,
run: _cli.run,
runCLI: _core().runCLI
};

View File

@@ -4,8 +4,6 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
declare const generateConfigFile: (results: {
[key: string]: unknown;
}) => string;
declare const generateConfigFile: (results: Record<string, unknown>) => string;
export default generateConfigFile;
//# sourceMappingURL=generate_config_file.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"generate_config_file.d.ts","sourceRoot":"","sources":["../../src/init/generate_config_file.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AA4BH,QAAA,MAAM,kBAAkB;;YAgDvB,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
{"version":3,"file":"generate_config_file.d.ts","sourceRoot":"","sources":["../../src/init/generate_config_file.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AA4BH,QAAA,MAAM,kBAAkB,8CAgDvB,CAAC;AAEF,eAAe,kBAAkB,CAAC"}

View File

@@ -7,8 +7,6 @@
import { Config } from '@jest/types';
export declare type ProjectPackageJson = {
jest?: Partial<Config.InitialOptions>;
scripts?: {
[key: string]: string;
};
scripts?: Record<string, string>;
};
//# sourceMappingURL=types.d.ts.map

View File

@@ -1 +1 @@
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/init/types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAC,MAAM,EAAC,MAAM,aAAa,CAAC;AAEnC,oBAAY,kBAAkB,GAAG;IAC/B,IAAI,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;IACtC,OAAO,CAAC,EAAE;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAC,CAAC;CACnC,CAAC"}
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/init/types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAC,MAAM,EAAC,MAAM,aAAa,CAAC;AAEnC,oBAAY,kBAAkB,GAAG;IAC/B,IAAI,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC;IACtC,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAClC,CAAC"}

View File

@@ -1,8 +0,0 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
export default function getVersion(): string;
//# sourceMappingURL=version.d.ts.map

View File

@@ -1 +0,0 @@
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,MAAM,CAAC,OAAO,UAAU,UAAU,IAAI,MAAM,CAE3C"}

View File

@@ -1,19 +0,0 @@
'use strict';
Object.defineProperty(exports, '__esModule', {
value: true
});
exports.default = getVersion;
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
const _require = require('../package.json'),
VERSION = _require.version;
function getVersion() {
return VERSION;
}

View File

@@ -1,65 +1,61 @@
{
"_args": [
[
"jest-cli@24.8.0",
"/Users/pjquirk/Source/GitHub/actions/labeler"
]
],
"_development": true,
"_from": "jest-cli@24.8.0",
"_id": "jest-cli@24.8.0",
"_from": "jest-cli@^24.9.0",
"_id": "jest-cli@24.9.0",
"_inBundle": false,
"_integrity": "sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA==",
"_integrity": "sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==",
"_location": "/jest/jest-cli",
"_phantomChildren": {},
"_requested": {
"type": "version",
"type": "range",
"registry": true,
"raw": "jest-cli@24.8.0",
"raw": "jest-cli@^24.9.0",
"name": "jest-cli",
"escapedName": "jest-cli",
"rawSpec": "24.8.0",
"rawSpec": "^24.9.0",
"saveSpec": null,
"fetchSpec": "24.8.0"
"fetchSpec": "^24.9.0"
},
"_requiredBy": [
"/jest"
],
"_resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.8.0.tgz",
"_spec": "24.8.0",
"_where": "/Users/pjquirk/Source/GitHub/actions/labeler",
"_resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz",
"_shasum": "ad2de62d07472d419c6abc301fc432b98b10d2af",
"_spec": "jest-cli@^24.9.0",
"_where": "/Users/dakale/dev/GitHub/actions/labeler/node_modules/jest",
"bin": {
"jest": "./bin/jest.js"
},
"bugs": {
"url": "https://github.com/facebook/jest/issues"
},
"bundleDependencies": false,
"dependencies": {
"@jest/core": "^24.8.0",
"@jest/test-result": "^24.8.0",
"@jest/types": "^24.8.0",
"@jest/core": "^24.9.0",
"@jest/test-result": "^24.9.0",
"@jest/types": "^24.9.0",
"chalk": "^2.0.1",
"exit": "^0.1.2",
"import-local": "^2.0.0",
"is-ci": "^2.0.0",
"jest-config": "^24.8.0",
"jest-util": "^24.8.0",
"jest-validate": "^24.8.0",
"jest-config": "^24.9.0",
"jest-util": "^24.9.0",
"jest-validate": "^24.9.0",
"prompts": "^2.0.1",
"realpath-native": "^1.1.0",
"yargs": "^12.0.2"
"yargs": "^13.3.0"
},
"deprecated": false,
"description": "Delightful JavaScript Testing.",
"devDependencies": {
"@types/exit": "^0.1.30",
"@types/is-ci": "^1.1.0",
"@types/prompts": "^1.2.0",
"@types/yargs": "^12.0.2"
"@types/is-ci": "^2.0.0",
"@types/prompts": "^2.0.1",
"@types/yargs": "^13.0.0"
},
"engines": {
"node": ">= 6"
},
"gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4",
"gitHead": "9ad0f4bc6b8bdd94989804226c28c9960d9da7d1",
"homepage": "https://jestjs.io/",
"keywords": [
"ava",
@@ -99,5 +95,5 @@
"directory": "packages/jest-cli"
},
"types": "build/index.d.ts",
"version": "24.8.0"
"version": "24.9.0"
}

View File

@@ -1,15 +0,0 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "build"
},
"references": [
{"path": "../jest-core"},
{"path": "../jest-config"},
{"path": "../jest-test-result"},
{"path": "../jest-types"},
{"path": "../jest-util"},
{"path": "../jest-validate"}
]
}

File diff suppressed because it is too large Load Diff

52
node_modules/jest/package.json generated vendored
View File

@@ -1,62 +1,58 @@
{
"_args": [
[
"jest@24.8.0",
"/Users/pjquirk/Source/GitHub/actions/labeler"
]
],
"_development": true,
"_from": "jest@24.8.0",
"_id": "jest@24.8.0",
"_from": "jest@^24.8.0",
"_id": "jest@24.9.0",
"_inBundle": false,
"_integrity": "sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg==",
"_integrity": "sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==",
"_location": "/jest",
"_phantomChildren": {
"@jest/core": "24.8.0",
"@jest/test-result": "24.8.0",
"@jest/types": "24.8.0",
"@jest/core": "24.9.0",
"@jest/test-result": "24.9.0",
"@jest/types": "24.9.0",
"chalk": "2.4.2",
"exit": "0.1.2",
"import-local": "2.0.0",
"is-ci": "2.0.0",
"jest-config": "24.8.0",
"jest-util": "24.8.0",
"jest-validate": "24.8.0",
"prompts": "2.1.0",
"jest-config": "24.9.0",
"jest-util": "24.9.0",
"jest-validate": "24.9.0",
"prompts": "2.3.2",
"realpath-native": "1.1.0",
"yargs": "12.0.5"
"yargs": "13.3.2"
},
"_requested": {
"type": "version",
"type": "range",
"registry": true,
"raw": "jest@24.8.0",
"raw": "jest@^24.8.0",
"name": "jest",
"escapedName": "jest",
"rawSpec": "24.8.0",
"rawSpec": "^24.8.0",
"saveSpec": null,
"fetchSpec": "24.8.0"
"fetchSpec": "^24.8.0"
},
"_requiredBy": [
"#DEV:/"
],
"_resolved": "https://registry.npmjs.org/jest/-/jest-24.8.0.tgz",
"_spec": "24.8.0",
"_where": "/Users/pjquirk/Source/GitHub/actions/labeler",
"_resolved": "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz",
"_shasum": "987d290c05a08b52c56188c1002e368edb007171",
"_spec": "jest@^24.8.0",
"_where": "/Users/dakale/dev/GitHub/actions/labeler",
"bin": {
"jest": "./bin/jest.js"
},
"bugs": {
"url": "https://github.com/facebook/jest/issues"
},
"bundleDependencies": false,
"dependencies": {
"import-local": "^2.0.0",
"jest-cli": "^24.8.0"
"jest-cli": "^24.9.0"
},
"deprecated": false,
"description": "Delightful JavaScript Testing.",
"engines": {
"node": ">= 6"
},
"gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4",
"gitHead": "9ad0f4bc6b8bdd94989804226c28c9960d9da7d1",
"homepage": "https://jestjs.io/",
"keywords": [
"ava",
@@ -95,5 +91,5 @@
"url": "git+https://github.com/facebook/jest.git"
},
"types": "build/jest.d.ts",
"version": "24.8.0"
"version": "24.9.0"
}

10
node_modules/jest/tsconfig.json generated vendored
View File

@@ -1,10 +0,0 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "build"
},
"references": [
{"path": "../jest-cli"}
]
}

3351
node_modules/jest/tsconfig.tsbuildinfo generated vendored

File diff suppressed because it is too large Load Diff