@eggjs/bin 8.0.2-beta.12 → 8.0.2-beta.13
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.
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { BaseCommand } from "../baseCommand.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _oclif_core_interfaces18 from "@oclif/core/interfaces";
|
|
3
3
|
|
|
4
4
|
//#region src/commands/bundle.d.ts
|
|
5
5
|
declare class Bundle extends BaseCommand<typeof Bundle> {
|
|
6
6
|
static description: string;
|
|
7
7
|
static examples: string[];
|
|
8
8
|
static flags: {
|
|
9
|
-
output:
|
|
10
|
-
manifest:
|
|
11
|
-
framework:
|
|
12
|
-
mode:
|
|
13
|
-
'force-external':
|
|
14
|
-
'inline-external':
|
|
15
|
-
'pack-alias':
|
|
9
|
+
output: _oclif_core_interfaces18.OptionFlag<string, _oclif_core_interfaces18.CustomOptions>;
|
|
10
|
+
manifest: _oclif_core_interfaces18.OptionFlag<string | undefined, _oclif_core_interfaces18.CustomOptions>;
|
|
11
|
+
framework: _oclif_core_interfaces18.OptionFlag<string | undefined, _oclif_core_interfaces18.CustomOptions>;
|
|
12
|
+
mode: _oclif_core_interfaces18.OptionFlag<string, _oclif_core_interfaces18.CustomOptions>;
|
|
13
|
+
'force-external': _oclif_core_interfaces18.OptionFlag<string[], _oclif_core_interfaces18.CustomOptions>;
|
|
14
|
+
'inline-external': _oclif_core_interfaces18.OptionFlag<string[], _oclif_core_interfaces18.CustomOptions>;
|
|
15
|
+
'pack-alias': _oclif_core_interfaces18.OptionFlag<string[], _oclif_core_interfaces18.CustomOptions>;
|
|
16
16
|
};
|
|
17
17
|
run(): Promise<void>;
|
|
18
18
|
}
|
package/dist/commands/cov.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import Test from "./test.js";
|
|
2
2
|
import { InlineConfig } from "vitest/node";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _oclif_core_interfaces6 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
|
-
exclude:
|
|
11
|
-
bail:
|
|
12
|
-
timeout:
|
|
13
|
-
'no-timeout':
|
|
14
|
-
grep:
|
|
15
|
-
changed:
|
|
16
|
-
watch:
|
|
17
|
-
pool:
|
|
10
|
+
exclude: _oclif_core_interfaces6.OptionFlag<string[] | undefined, _oclif_core_interfaces6.CustomOptions>;
|
|
11
|
+
bail: _oclif_core_interfaces6.BooleanFlag<boolean>;
|
|
12
|
+
timeout: _oclif_core_interfaces6.OptionFlag<number, _oclif_core_interfaces6.CustomOptions>;
|
|
13
|
+
'no-timeout': _oclif_core_interfaces6.BooleanFlag<boolean>;
|
|
14
|
+
grep: _oclif_core_interfaces6.OptionFlag<string | undefined, _oclif_core_interfaces6.CustomOptions>;
|
|
15
|
+
changed: _oclif_core_interfaces6.BooleanFlag<boolean>;
|
|
16
|
+
watch: _oclif_core_interfaces6.BooleanFlag<boolean>;
|
|
17
|
+
pool: _oclif_core_interfaces6.OptionFlag<string, _oclif_core_interfaces6.CustomOptions>;
|
|
18
18
|
};
|
|
19
19
|
protected get defaultCoverageExcludes(): string[];
|
|
20
20
|
/**
|
|
@@ -1,17 +1,17 @@
|
|
|
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/manifest.d.ts
|
|
5
5
|
declare class Manifest<T extends typeof Manifest> extends BaseCommand<T> {
|
|
6
6
|
static description: string;
|
|
7
7
|
static examples: string[];
|
|
8
8
|
static args: {
|
|
9
|
-
action:
|
|
9
|
+
action: _oclif_core_interfaces0.Arg<string, Record<string, unknown>>;
|
|
10
10
|
};
|
|
11
11
|
static flags: {
|
|
12
|
-
framework:
|
|
13
|
-
env:
|
|
14
|
-
scope:
|
|
12
|
+
framework: _oclif_core_interfaces0.OptionFlag<string | undefined, _oclif_core_interfaces0.CustomOptions>;
|
|
13
|
+
env: _oclif_core_interfaces0.OptionFlag<string, _oclif_core_interfaces0.CustomOptions>;
|
|
14
|
+
scope: _oclif_core_interfaces0.OptionFlag<string, _oclif_core_interfaces0.CustomOptions>;
|
|
15
15
|
};
|
|
16
16
|
run(): Promise<void>;
|
|
17
17
|
private runGenerate;
|
package/dist/commands/test.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { BaseCommand } from "../baseCommand.js";
|
|
2
2
|
import { InlineConfig } from "vitest/node";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _oclif_core_interfaces32 from "@oclif/core/interfaces";
|
|
4
4
|
|
|
5
5
|
//#region src/commands/test.d.ts
|
|
6
6
|
declare class Test<T extends typeof Test> extends BaseCommand<T> {
|
|
7
7
|
static args: {
|
|
8
|
-
file:
|
|
8
|
+
file: _oclif_core_interfaces32.Arg<string | undefined, Record<string, unknown>>;
|
|
9
9
|
};
|
|
10
10
|
static description: string;
|
|
11
11
|
static examples: string[];
|
|
12
12
|
static flags: {
|
|
13
|
-
bail:
|
|
14
|
-
timeout:
|
|
15
|
-
'no-timeout':
|
|
16
|
-
grep:
|
|
17
|
-
changed:
|
|
18
|
-
watch:
|
|
19
|
-
pool:
|
|
13
|
+
bail: _oclif_core_interfaces32.BooleanFlag<boolean>;
|
|
14
|
+
timeout: _oclif_core_interfaces32.OptionFlag<number, _oclif_core_interfaces32.CustomOptions>;
|
|
15
|
+
'no-timeout': _oclif_core_interfaces32.BooleanFlag<boolean>;
|
|
16
|
+
grep: _oclif_core_interfaces32.OptionFlag<string | undefined, _oclif_core_interfaces32.CustomOptions>;
|
|
17
|
+
changed: _oclif_core_interfaces32.BooleanFlag<boolean>;
|
|
18
|
+
watch: _oclif_core_interfaces32.BooleanFlag<boolean>;
|
|
19
|
+
pool: _oclif_core_interfaces32.OptionFlag<string, _oclif_core_interfaces32.CustomOptions>;
|
|
20
20
|
};
|
|
21
21
|
run(): Promise<void>;
|
|
22
22
|
protected buildVitestConfig(files: string[]): Promise<InlineConfig>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eggjs/bin",
|
|
3
|
-
"version": "8.0.2-beta.
|
|
3
|
+
"version": "8.0.2-beta.13",
|
|
4
4
|
"description": "egg developer tool",
|
|
5
5
|
"homepage": "https://github.com/eggjs/egg/tree/next/tools/egg-bin",
|
|
6
6
|
"bugs": {
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"tsconfig-paths": "^4.2.0",
|
|
52
52
|
"utility": "^2.5.0",
|
|
53
53
|
"vitest": "^4.0.15",
|
|
54
|
-
"@eggjs/core": "7.0.2-beta.
|
|
55
|
-
"@eggjs/egg-bundler": "0.0.1-beta.
|
|
56
|
-
"@eggjs/tegg-vitest": "4.0.2-beta.
|
|
57
|
-
"@eggjs/utils": "5.0.2-beta.
|
|
54
|
+
"@eggjs/core": "7.0.2-beta.13",
|
|
55
|
+
"@eggjs/egg-bundler": "0.0.1-beta.3",
|
|
56
|
+
"@eggjs/tegg-vitest": "4.0.2-beta.13",
|
|
57
|
+
"@eggjs/utils": "5.0.2-beta.13"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@swc-node/register": "^1.11.1",
|
|
@@ -70,13 +70,13 @@
|
|
|
70
70
|
"runscript": "^2.0.1",
|
|
71
71
|
"sdk-base": "^5.0.1",
|
|
72
72
|
"typescript": "^5.9.3",
|
|
73
|
-
"@eggjs/
|
|
74
|
-
"@eggjs/tsconfig": "3.1.2-beta.
|
|
75
|
-
"
|
|
76
|
-
"
|
|
73
|
+
"@eggjs/mock": "7.0.2-beta.13",
|
|
74
|
+
"@eggjs/tsconfig": "3.1.2-beta.13",
|
|
75
|
+
"@eggjs/supertest": "9.0.2-beta.13",
|
|
76
|
+
"egg": "4.1.2-beta.13"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
|
-
"@eggjs/mock": "7.0.2-beta.
|
|
79
|
+
"@eggjs/mock": "7.0.2-beta.13"
|
|
80
80
|
},
|
|
81
81
|
"peerDependenciesMeta": {
|
|
82
82
|
"@eggjs/mock": {
|