@eggjs/bin 8.0.0-beta.15 → 8.0.0-beta.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/cov.d.ts +13 -13
- package/dist/commands/test.d.ts +11 -11
- package/package.json +7 -7
package/dist/commands/cov.d.ts
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import { ForkNodeOptions } from "../baseCommand.js";
|
|
2
2
|
import { Test } from "./test.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _oclif_core_interfaces12 from "@oclif/core/interfaces";
|
|
4
4
|
|
|
5
5
|
//#region src/commands/cov.d.ts
|
|
6
6
|
declare class Cov<T extends typeof Cov> extends Test<T> {
|
|
7
7
|
static description: string;
|
|
8
8
|
static examples: string[];
|
|
9
9
|
static flags: {
|
|
10
|
-
prerequire:
|
|
11
|
-
exclude:
|
|
12
|
-
c8:
|
|
13
|
-
bail:
|
|
14
|
-
timeout:
|
|
15
|
-
'no-timeout':
|
|
16
|
-
grep:
|
|
17
|
-
changed:
|
|
18
|
-
mochawesome:
|
|
19
|
-
parallel:
|
|
20
|
-
jobs:
|
|
21
|
-
'auto-agent':
|
|
10
|
+
prerequire: _oclif_core_interfaces12.BooleanFlag<boolean>;
|
|
11
|
+
exclude: _oclif_core_interfaces12.OptionFlag<string[] | undefined, _oclif_core_interfaces12.CustomOptions>;
|
|
12
|
+
c8: _oclif_core_interfaces12.OptionFlag<string, _oclif_core_interfaces12.CustomOptions>;
|
|
13
|
+
bail: _oclif_core_interfaces12.BooleanFlag<boolean>;
|
|
14
|
+
timeout: _oclif_core_interfaces12.OptionFlag<number, _oclif_core_interfaces12.CustomOptions>;
|
|
15
|
+
'no-timeout': _oclif_core_interfaces12.BooleanFlag<boolean>;
|
|
16
|
+
grep: _oclif_core_interfaces12.OptionFlag<string | undefined, _oclif_core_interfaces12.CustomOptions>;
|
|
17
|
+
changed: _oclif_core_interfaces12.BooleanFlag<boolean>;
|
|
18
|
+
mochawesome: _oclif_core_interfaces12.BooleanFlag<boolean>;
|
|
19
|
+
parallel: _oclif_core_interfaces12.BooleanFlag<boolean>;
|
|
20
|
+
jobs: _oclif_core_interfaces12.OptionFlag<number, _oclif_core_interfaces12.CustomOptions>;
|
|
21
|
+
'auto-agent': _oclif_core_interfaces12.BooleanFlag<boolean>;
|
|
22
22
|
};
|
|
23
23
|
protected get defaultExcludes(): string[];
|
|
24
24
|
protected forkNode(modulePath: string, forkArgs: string[], options?: ForkNodeOptions): Promise<void>;
|
package/dist/commands/test.d.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import { BaseCommand } from "../baseCommand.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _oclif_core_interfaces0 from "@oclif/core/interfaces";
|
|
3
3
|
|
|
4
4
|
//#region src/commands/test.d.ts
|
|
5
5
|
declare class Test<T extends typeof Test> extends BaseCommand<T> {
|
|
6
6
|
static args: {
|
|
7
|
-
file:
|
|
7
|
+
file: _oclif_core_interfaces0.Arg<string | undefined, Record<string, unknown>>;
|
|
8
8
|
};
|
|
9
9
|
static description: string;
|
|
10
10
|
static examples: string[];
|
|
11
11
|
static flags: {
|
|
12
|
-
bail:
|
|
13
|
-
timeout:
|
|
14
|
-
'no-timeout':
|
|
15
|
-
grep:
|
|
16
|
-
changed:
|
|
17
|
-
mochawesome:
|
|
18
|
-
parallel:
|
|
19
|
-
jobs:
|
|
20
|
-
'auto-agent':
|
|
12
|
+
bail: _oclif_core_interfaces0.BooleanFlag<boolean>;
|
|
13
|
+
timeout: _oclif_core_interfaces0.OptionFlag<number, _oclif_core_interfaces0.CustomOptions>;
|
|
14
|
+
'no-timeout': _oclif_core_interfaces0.BooleanFlag<boolean>;
|
|
15
|
+
grep: _oclif_core_interfaces0.OptionFlag<string | undefined, _oclif_core_interfaces0.CustomOptions>;
|
|
16
|
+
changed: _oclif_core_interfaces0.BooleanFlag<boolean>;
|
|
17
|
+
mochawesome: _oclif_core_interfaces0.BooleanFlag<boolean>;
|
|
18
|
+
parallel: _oclif_core_interfaces0.BooleanFlag<boolean>;
|
|
19
|
+
jobs: _oclif_core_interfaces0.OptionFlag<number, _oclif_core_interfaces0.CustomOptions>;
|
|
20
|
+
'auto-agent': _oclif_core_interfaces0.BooleanFlag<boolean>;
|
|
21
21
|
};
|
|
22
22
|
run(): Promise<void>;
|
|
23
23
|
protected runMocha(mochaFile: string, mochaArgs: string[]): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eggjs/bin",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.18",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"ts-node": "^10.9.2",
|
|
34
34
|
"tsconfig-paths": "^4.2.0",
|
|
35
35
|
"utility": "^2.5.0",
|
|
36
|
-
"@eggjs/supertest": "9.0.0-beta.
|
|
37
|
-
"@eggjs/utils": "5.0.0-beta.
|
|
36
|
+
"@eggjs/supertest": "9.0.0-beta.18",
|
|
37
|
+
"@eggjs/utils": "5.0.0-beta.18"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@eggjs/mock": "7.0.0-beta.
|
|
40
|
+
"@eggjs/mock": "7.0.0-beta.18"
|
|
41
41
|
},
|
|
42
42
|
"peerDependenciesMeta": {
|
|
43
43
|
"@eggjs/mock": {
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"rimraf": "^6.0.1",
|
|
58
58
|
"typescript": "5.9.2",
|
|
59
59
|
"tsdown": "^0.15.4",
|
|
60
|
-
"@eggjs/tsconfig": "3.1.0-beta.
|
|
61
|
-
"
|
|
62
|
-
"
|
|
60
|
+
"@eggjs/tsconfig": "3.1.0-beta.18",
|
|
61
|
+
"egg": "4.1.0-beta.18",
|
|
62
|
+
"@eggjs/mock": "7.0.0-beta.18"
|
|
63
63
|
},
|
|
64
64
|
"type": "module",
|
|
65
65
|
"files": [
|