@eggjs/bin 7.4.0-beta.11 → 8.0.0-beta.15
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/bin/run.js +1 -1
- package/dist/commands/dev.d.ts +5 -5
- package/dist/commands/test.d.ts +11 -11
- package/package.json +9 -12
package/bin/run.js
CHANGED
package/dist/commands/dev.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { BaseCommand } from "../baseCommand.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _oclif_core_interfaces29 from "@oclif/core/interfaces";
|
|
3
3
|
|
|
4
4
|
//#region src/commands/dev.d.ts
|
|
5
5
|
declare class Dev<T extends typeof Dev> extends BaseCommand<T> {
|
|
6
6
|
static description: string;
|
|
7
7
|
static examples: string[];
|
|
8
8
|
static flags: {
|
|
9
|
-
port:
|
|
10
|
-
workers:
|
|
11
|
-
framework:
|
|
12
|
-
sticky:
|
|
9
|
+
port: _oclif_core_interfaces29.OptionFlag<number | undefined, _oclif_core_interfaces29.CustomOptions>;
|
|
10
|
+
workers: _oclif_core_interfaces29.OptionFlag<number, _oclif_core_interfaces29.CustomOptions>;
|
|
11
|
+
framework: _oclif_core_interfaces29.OptionFlag<string | undefined, _oclif_core_interfaces29.CustomOptions>;
|
|
12
|
+
sticky: _oclif_core_interfaces29.BooleanFlag<boolean>;
|
|
13
13
|
};
|
|
14
14
|
run(): Promise<void>;
|
|
15
15
|
protected formatEggStartOptions(): Promise<{
|
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_interfaces16 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_interfaces16.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_interfaces16.BooleanFlag<boolean>;
|
|
13
|
+
timeout: _oclif_core_interfaces16.OptionFlag<number, _oclif_core_interfaces16.CustomOptions>;
|
|
14
|
+
'no-timeout': _oclif_core_interfaces16.BooleanFlag<boolean>;
|
|
15
|
+
grep: _oclif_core_interfaces16.OptionFlag<string | undefined, _oclif_core_interfaces16.CustomOptions>;
|
|
16
|
+
changed: _oclif_core_interfaces16.BooleanFlag<boolean>;
|
|
17
|
+
mochawesome: _oclif_core_interfaces16.BooleanFlag<boolean>;
|
|
18
|
+
parallel: _oclif_core_interfaces16.BooleanFlag<boolean>;
|
|
19
|
+
jobs: _oclif_core_interfaces16.OptionFlag<number, _oclif_core_interfaces16.CustomOptions>;
|
|
20
|
+
'auto-agent': _oclif_core_interfaces16.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": "
|
|
3
|
+
"version": "8.0.0-beta.15",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"homepage": "https://github.com/eggjs/egg/tree/next/tools/egg-bin",
|
|
17
17
|
"author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
|
|
18
18
|
"engines": {
|
|
19
|
-
"node": ">=
|
|
19
|
+
"node": ">=22.18.0"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@oclif/core": "^4.2.0",
|
|
@@ -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/
|
|
37
|
-
"@eggjs/
|
|
36
|
+
"@eggjs/supertest": "9.0.0-beta.15",
|
|
37
|
+
"@eggjs/utils": "5.0.0-beta.15"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@eggjs/mock": "
|
|
40
|
+
"@eggjs/mock": "7.0.0-beta.15"
|
|
41
41
|
},
|
|
42
42
|
"peerDependenciesMeta": {
|
|
43
43
|
"@eggjs/mock": {
|
|
@@ -45,23 +45,21 @@
|
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
+
"@types/node": "24.5.2",
|
|
48
49
|
"@swc-node/register": "^1.11.1",
|
|
49
50
|
"@swc/core": "^1.13.5",
|
|
50
|
-
"@types/node": "24.5.2",
|
|
51
51
|
"assert-file": "1",
|
|
52
52
|
"coffee": "5",
|
|
53
53
|
"cpy": "^12.0.0",
|
|
54
|
-
"cpy-cli": "^6.0.0",
|
|
55
|
-
"cross-env": "^10.0.0",
|
|
56
54
|
"esbuild": "^0.25.0",
|
|
57
55
|
"esbuild-register": "^3.6.0",
|
|
58
56
|
"npminstall": "^7.12.0",
|
|
59
57
|
"rimraf": "^6.0.1",
|
|
60
58
|
"typescript": "5.9.2",
|
|
61
59
|
"tsdown": "^0.15.4",
|
|
62
|
-
"@eggjs/tsconfig": "3.1.0-beta.
|
|
63
|
-
"
|
|
64
|
-
"
|
|
60
|
+
"@eggjs/tsconfig": "3.1.0-beta.15",
|
|
61
|
+
"@eggjs/mock": "7.0.0-beta.15",
|
|
62
|
+
"egg": "4.1.0-beta.15"
|
|
65
63
|
},
|
|
66
64
|
"type": "module",
|
|
67
65
|
"files": [
|
|
@@ -98,7 +96,6 @@
|
|
|
98
96
|
"preci": "npm run clean && npm run lint && npm run prepublishOnly",
|
|
99
97
|
"ci": "npm run cov",
|
|
100
98
|
"clean": "rimraf dist",
|
|
101
|
-
"copyScripts": "rimraf dist/scripts && cpy scripts dist",
|
|
102
99
|
"build": "tsdown"
|
|
103
100
|
}
|
|
104
101
|
}
|