@rsdoctor/sdk 0.4.10 → 0.4.12
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/cjs/sdk/multiple/controller.js +6 -4
- package/dist/cjs/sdk/multiple/index.js +2 -2
- package/dist/cjs/sdk/multiple/{slave.js → primary.js} +12 -6
- package/dist/esm/sdk/multiple/controller.js +5 -3
- package/dist/esm/sdk/multiple/index.js +1 -1
- package/dist/esm/sdk/multiple/{slave.js → primary.js} +9 -3
- package/dist/type/sdk/multiple/controller.d.ts +2 -2
- package/dist/type/sdk/multiple/controller.d.ts.map +1 -1
- package/dist/type/sdk/multiple/index.d.ts +1 -1
- package/dist/type/sdk/multiple/index.d.ts.map +1 -1
- package/dist/type/sdk/multiple/{slave.d.ts → primary.d.ts} +4 -2
- package/dist/type/sdk/multiple/primary.d.ts.map +1 -0
- package/dist/type/sdk/multiple/server.d.ts +1 -1
- package/dist/type/sdk/multiple/server.d.ts.map +1 -1
- package/dist/type/sdk/sdk/index.d.ts +1 -1
- package/dist/type/sdk/sdk/index.d.ts.map +1 -1
- package/package.json +7 -7
- package/dist/type/sdk/multiple/slave.d.ts.map +0 -1
|
@@ -21,7 +21,7 @@ __export(controller_exports, {
|
|
|
21
21
|
RsdoctorSDKController: () => RsdoctorSDKController
|
|
22
22
|
});
|
|
23
23
|
module.exports = __toCommonJS(controller_exports);
|
|
24
|
-
var
|
|
24
|
+
var import_primary = require("./primary");
|
|
25
25
|
class RsdoctorSDKController {
|
|
26
26
|
constructor(root = process.cwd()) {
|
|
27
27
|
this.slaves = [];
|
|
@@ -53,13 +53,15 @@ class RsdoctorSDKController {
|
|
|
53
53
|
createSlave({
|
|
54
54
|
name,
|
|
55
55
|
stage,
|
|
56
|
-
extraConfig
|
|
56
|
+
extraConfig,
|
|
57
|
+
type
|
|
57
58
|
}) {
|
|
58
|
-
const slave = new
|
|
59
|
+
const slave = new import_primary.RsdoctorPrimarySDK({
|
|
59
60
|
name,
|
|
60
61
|
stage,
|
|
61
62
|
controller: this,
|
|
62
|
-
extraConfig
|
|
63
|
+
extraConfig,
|
|
64
|
+
type
|
|
63
65
|
});
|
|
64
66
|
this.slaves.push(slave);
|
|
65
67
|
this.slaves.sort((a, b) => a.stage - b.stage);
|
|
@@ -16,9 +16,9 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
16
16
|
var multiple_exports = {};
|
|
17
17
|
module.exports = __toCommonJS(multiple_exports);
|
|
18
18
|
__reExport(multiple_exports, require("./controller"), module.exports);
|
|
19
|
-
__reExport(multiple_exports, require("./
|
|
19
|
+
__reExport(multiple_exports, require("./primary"), module.exports);
|
|
20
20
|
// Annotate the CommonJS export names for ESM import in node:
|
|
21
21
|
0 && (module.exports = {
|
|
22
22
|
...require("./controller"),
|
|
23
|
-
...require("./
|
|
23
|
+
...require("./primary")
|
|
24
24
|
});
|
|
@@ -26,11 +26,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
26
26
|
mod
|
|
27
27
|
));
|
|
28
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
-
var
|
|
30
|
-
__export(
|
|
29
|
+
var primary_exports = {};
|
|
30
|
+
__export(primary_exports, {
|
|
31
31
|
RsdoctorPrimarySDK: () => RsdoctorPrimarySDK
|
|
32
32
|
});
|
|
33
|
-
module.exports = __toCommonJS(
|
|
33
|
+
module.exports = __toCommonJS(primary_exports);
|
|
34
34
|
var import_path = __toESM(require("path"));
|
|
35
35
|
var import_sdk = require("../sdk");
|
|
36
36
|
var import_server = require("./server");
|
|
@@ -40,7 +40,8 @@ class RsdoctorPrimarySDK extends import_sdk.RsdoctorSDK {
|
|
|
40
40
|
name,
|
|
41
41
|
stage,
|
|
42
42
|
controller,
|
|
43
|
-
extraConfig
|
|
43
|
+
extraConfig,
|
|
44
|
+
type
|
|
44
45
|
}) {
|
|
45
46
|
super({ name, root: controller.root });
|
|
46
47
|
const lastSdk = controller.getLastSdk();
|
|
@@ -50,6 +51,7 @@ class RsdoctorPrimarySDK extends import_sdk.RsdoctorSDK {
|
|
|
50
51
|
this.extraConfig = extraConfig;
|
|
51
52
|
this.parent = controller;
|
|
52
53
|
this.server = new import_server.RsdoctorSlaveServer(this, port);
|
|
54
|
+
this.type = type;
|
|
53
55
|
this.setName(name);
|
|
54
56
|
this.clearSwitch();
|
|
55
57
|
}
|
|
@@ -74,8 +76,12 @@ class RsdoctorPrimarySDK extends import_sdk.RsdoctorSDK {
|
|
|
74
76
|
finishUploadPieceSwitch?.();
|
|
75
77
|
}
|
|
76
78
|
async writeManifest() {
|
|
77
|
-
const { parent, cloudData } = this;
|
|
78
|
-
|
|
79
|
+
const { parent, cloudData, dependencies } = this;
|
|
80
|
+
if (!dependencies?.length) {
|
|
81
|
+
await Promise.all(
|
|
82
|
+
this.parent.slaves.filter((item) => !item.dependencies?.length).map((item) => item.uploadPieces)
|
|
83
|
+
);
|
|
84
|
+
}
|
|
79
85
|
if (cloudData) {
|
|
80
86
|
cloudData.name = this.name;
|
|
81
87
|
cloudData.series = parent.getSeriesData();
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RsdoctorPrimarySDK } from "./
|
|
1
|
+
import { RsdoctorPrimarySDK } from "./primary";
|
|
2
2
|
class RsdoctorSDKController {
|
|
3
3
|
constructor(root = process.cwd()) {
|
|
4
4
|
this.slaves = [];
|
|
@@ -30,13 +30,15 @@ class RsdoctorSDKController {
|
|
|
30
30
|
createSlave({
|
|
31
31
|
name,
|
|
32
32
|
stage,
|
|
33
|
-
extraConfig
|
|
33
|
+
extraConfig,
|
|
34
|
+
type
|
|
34
35
|
}) {
|
|
35
36
|
const slave = new RsdoctorPrimarySDK({
|
|
36
37
|
name,
|
|
37
38
|
stage,
|
|
38
39
|
controller: this,
|
|
39
|
-
extraConfig
|
|
40
|
+
extraConfig,
|
|
41
|
+
type
|
|
40
42
|
});
|
|
41
43
|
this.slaves.push(slave);
|
|
42
44
|
this.slaves.sort((a, b) => a.stage - b.stage);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from "./controller";
|
|
2
|
-
export * from "./
|
|
2
|
+
export * from "./primary";
|
|
@@ -7,7 +7,8 @@ class RsdoctorPrimarySDK extends RsdoctorSDK {
|
|
|
7
7
|
name,
|
|
8
8
|
stage,
|
|
9
9
|
controller,
|
|
10
|
-
extraConfig
|
|
10
|
+
extraConfig,
|
|
11
|
+
type
|
|
11
12
|
}) {
|
|
12
13
|
super({ name, root: controller.root });
|
|
13
14
|
const lastSdk = controller.getLastSdk();
|
|
@@ -17,6 +18,7 @@ class RsdoctorPrimarySDK extends RsdoctorSDK {
|
|
|
17
18
|
this.extraConfig = extraConfig;
|
|
18
19
|
this.parent = controller;
|
|
19
20
|
this.server = new RsdoctorSlaveServer(this, port);
|
|
21
|
+
this.type = type;
|
|
20
22
|
this.setName(name);
|
|
21
23
|
this.clearSwitch();
|
|
22
24
|
}
|
|
@@ -41,8 +43,12 @@ class RsdoctorPrimarySDK extends RsdoctorSDK {
|
|
|
41
43
|
finishUploadPieceSwitch?.();
|
|
42
44
|
}
|
|
43
45
|
async writeManifest() {
|
|
44
|
-
const { parent, cloudData } = this;
|
|
45
|
-
|
|
46
|
+
const { parent, cloudData, dependencies } = this;
|
|
47
|
+
if (!dependencies?.length) {
|
|
48
|
+
await Promise.all(
|
|
49
|
+
this.parent.slaves.filter((item) => !item.dependencies?.length).map((item) => item.uploadPieces)
|
|
50
|
+
);
|
|
51
|
+
}
|
|
46
52
|
if (cloudData) {
|
|
47
53
|
cloudData.name = this.name;
|
|
48
54
|
cloudData.series = parent.getSeriesData();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Manifest } from '@rsdoctor/types';
|
|
2
|
-
import { RsdoctorPrimarySDK } from './
|
|
2
|
+
import { RsdoctorPrimarySDK } from './primary';
|
|
3
3
|
export declare class RsdoctorSDKController {
|
|
4
4
|
readonly slaves: RsdoctorPrimarySDK[];
|
|
5
5
|
root: string;
|
|
@@ -8,6 +8,6 @@ export declare class RsdoctorSDKController {
|
|
|
8
8
|
getLastSdk(): RsdoctorPrimarySDK;
|
|
9
9
|
hasName(name: string): boolean;
|
|
10
10
|
getSeriesData(serverUrl?: boolean): Manifest.RsdoctorManifestSeriesData[];
|
|
11
|
-
createSlave({ name, stage, extraConfig, }: Omit<ConstructorParameters<typeof RsdoctorPrimarySDK>[0], 'controller'>): RsdoctorPrimarySDK;
|
|
11
|
+
createSlave({ name, stage, extraConfig, type, }: Omit<ConstructorParameters<typeof RsdoctorPrimarySDK>[0], 'controller'>): RsdoctorPrimarySDK;
|
|
12
12
|
}
|
|
13
13
|
//# sourceMappingURL=controller.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"controller.d.ts","sourceRoot":"","sources":["../../../../src/sdk/multiple/controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,kBAAkB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"controller.d.ts","sourceRoot":"","sources":["../../../../src/sdk/multiple/controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAC3C,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/C,qBAAa,qBAAqB;IAChC,QAAQ,CAAC,MAAM,EAAE,kBAAkB,EAAE,CAAM;IAEpC,IAAI,SAAM;gBAEL,IAAI,SAAgB;IAIhC,IAAI,MAAM,uBAET;IAED,UAAU;IAIV,OAAO,CAAC,IAAI,EAAE,MAAM;IAIpB,aAAa,CAAC,SAAS,UAAQ;IAgB/B,WAAW,CAAC,EACV,IAAI,EACJ,KAAK,EACL,WAAW,EACX,IAAI,GACL,EAAE,IAAI,CAAC,qBAAqB,CAAC,OAAO,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC;CAa3E"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/multiple/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/multiple/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC"}
|
|
@@ -11,14 +11,16 @@ interface RsdoctorSlaveSDKOptions {
|
|
|
11
11
|
stage?: number;
|
|
12
12
|
extraConfig?: SDK.SDKOptionsType;
|
|
13
13
|
controller: RsdoctorSDKController;
|
|
14
|
+
type: SDK.ToDataType;
|
|
14
15
|
}
|
|
15
16
|
export declare class RsdoctorPrimarySDK extends RsdoctorSDK {
|
|
16
17
|
id: number;
|
|
17
18
|
parent: RsdoctorSDKController;
|
|
18
19
|
readonly stage: number;
|
|
20
|
+
dependencies: Array<string> | undefined;
|
|
19
21
|
private uploadPieces;
|
|
20
22
|
private finishUploadPieceSwitch;
|
|
21
|
-
constructor({ name, stage, controller, extraConfig, }: RsdoctorSlaveSDKOptions);
|
|
23
|
+
constructor({ name, stage, controller, extraConfig, type, }: RsdoctorSlaveSDKOptions);
|
|
22
24
|
private clearSwitch;
|
|
23
25
|
get isMaster(): boolean;
|
|
24
26
|
protected writePieces(): Promise<void>;
|
|
@@ -28,4 +30,4 @@ export declare class RsdoctorPrimarySDK extends RsdoctorSDK {
|
|
|
28
30
|
getManifestData(): import("@rsdoctor/types/dist/manifest").RsdoctorManifestWithShardingFiles;
|
|
29
31
|
}
|
|
30
32
|
export {};
|
|
31
|
-
//# sourceMappingURL=
|
|
33
|
+
//# sourceMappingURL=primary.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"primary.d.ts","sourceRoot":"","sources":["../../../../src/sdk/multiple/primary.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAErC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAI1D,UAAU,uBAAuB;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,GAAG,CAAC,cAAc,CAAC;IACjC,UAAU,EAAE,qBAAqB,CAAC;IAClC,IAAI,EAAE,GAAG,CAAC,UAAU,CAAC;CACtB;AAED,qBAAa,kBAAmB,SAAQ,WAAW;IACjD,EAAE,EAAE,MAAM,CAAC;IAEX,MAAM,EAAE,qBAAqB,CAAC;IAE9B,SAAgB,KAAK,EAAE,MAAM,CAAC;IAEvB,YAAY,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC;IAE/C,OAAO,CAAC,YAAY,CAAiB;IAErC,OAAO,CAAC,uBAAuB,CAAc;gBAEjC,EACV,IAAI,EACJ,KAAK,EACL,UAAU,EACV,WAAW,EACX,IAAI,GACL,EAAE,uBAAuB;IAgB1B,OAAO,CAAC,WAAW;IAMnB,IAAI,QAAQ,YAEX;cAEe,WAAW,IAAI,OAAO,CAAC,IAAI,CAAC;cAe5B,aAAa;IAqB7B,aAAa,CAAC,SAAS,UAAQ;IAI/B,OAAO,CAAC,IAAI,EAAE,MAAM;IAIpB,eAAe;CAMhB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { RsdoctorServer } from '../server';
|
|
2
|
-
import type { RsdoctorPrimarySDK } from './
|
|
2
|
+
import type { RsdoctorPrimarySDK } from './primary';
|
|
3
3
|
export declare class RsdoctorSlaveServer extends RsdoctorServer {
|
|
4
4
|
protected sdk: RsdoctorPrimarySDK;
|
|
5
5
|
constructor(sdk: RsdoctorPrimarySDK, port?: number);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../../../src/sdk/multiple/server.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAC3C,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../../../src/sdk/multiple/server.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAC3C,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAEpD,qBAAa,mBAAoB,SAAQ,cAAc;IACrD,SAAS,CAAC,GAAG,EAAE,kBAAkB,CAAC;gBAEtB,GAAG,EAAE,kBAAkB,EAAE,IAAI,SAAqB;IAKxD,cAAc,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE;CAOxC"}
|
|
@@ -8,7 +8,7 @@ export * from '../utils/openBrowser';
|
|
|
8
8
|
export declare class RsdoctorSDK<T extends RsdoctorWebpackSDKOptions = RsdoctorWebpackSDKOptions> extends SDKCore<T> implements SDK.RsdoctorBuilderSDKInstance {
|
|
9
9
|
server: RsdoctorServer;
|
|
10
10
|
extraConfig: SDK.SDKOptionsType | undefined;
|
|
11
|
-
|
|
11
|
+
type: SDK.ToDataType;
|
|
12
12
|
private _summary;
|
|
13
13
|
private _configs;
|
|
14
14
|
private _errors;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/sdk/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAqB,QAAQ,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AAEnE,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAExE,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAE3C,OAAO,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAC;AACpD,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AAKjC,cAAc,sBAAsB,CAAC;AAErC,qBAAa,WAAW,CACpB,CAAC,SAAS,yBAAyB,GAAG,yBAAyB,CAEjE,SAAQ,OAAO,CAAC,CAAC,CACjB,YAAW,GAAG,CAAC,0BAA0B;IAElC,MAAM,EAAE,cAAc,CAAC;IAEvB,WAAW,EAAE,GAAG,CAAC,cAAc,GAAG,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/sdk/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAqB,QAAQ,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AAEnE,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAExE,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAE3C,OAAO,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAC;AACpD,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AAKjC,cAAc,sBAAsB,CAAC;AAErC,qBAAa,WAAW,CACpB,CAAC,SAAS,yBAAyB,GAAG,yBAAyB,CAEjE,SAAQ,OAAO,CAAC,CAAC,CACjB,YAAW,GAAG,CAAC,0BAA0B;IAElC,MAAM,EAAE,cAAc,CAAC;IAEvB,WAAW,EAAE,GAAG,CAAC,cAAc,GAAG,SAAS,CAAC;IAE5C,IAAI,EAAE,GAAG,CAAC,UAAU,CAAC;IAE5B,OAAO,CAAC,QAAQ,CAAkC;IAElD,OAAO,CAAC,QAAQ,CAAsB;IAEtC,OAAO,CAAC,OAAO,CAAsB;IAErC,OAAO,CAAC,OAAO,CAAsB;IAErC,OAAO,CAAC,YAAY,CAAsB;IAE1C,OAAO,CAAC,SAAS,CAAwB;IAEzC,OAAO,CAAC,OAAO,CAAsB;IAErC,OAAO,CAAC,YAAY,CAAqB;IAEzC,OAAO,CAAC,WAAW,CAAoB;IAEvC,OAAO,CAAC,kBAAkB,CAAmC;IAE7D,OAAO,CAAC,UAAU,CAAwC;IAE1D,OAAO,CAAC,aAAa,CAA4B;IAEjD,OAAO,CAAC,eAAe,CAAqB;gBAEhC,OAAO,EAAE,CAAC;IAYhB,SAAS;IAUT,OAAO;IAOP,aAAa,CAAC,EAAE,EAAE,MAAM;IA0C9B,KAAK;IASL,mBAAmB,IAAI,IAAI;IAKrB,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,GAAG,SAAS,CAAC;IA6BxE,eAAe,CAAC,IAAI,EAAE,YAAY,GAAG,IAAI;IAIzC,mBAAmB,CAAC,MAAM,EAAE,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC;IAK7C,WAAW,CAAC,MAAM,EAAE,KAAK,EAAE;IAW3B,YAAY,CAAC,IAAI,EAAE,GAAG,CAAC,UAAU;IA6CjC,sBAAsB,CAAC,IAAI,EAAE,GAAG,CAAC,kBAAkB;IAoBnD,cAAc,CAAC,IAAI,EAAE,GAAG,CAAC,YAAY,GAAG,IAAI;IAK5C,YAAY,CAAC,IAAI,EAAE,GAAG,CAAC,UAAU,GAAG,IAAI;IAaxC,iBAAiB,CAAC,IAAI,EAAE,WAAW,GAAG,IAAI;IAW1C,kBAAkB,CAAC,IAAI,EAAE,YAAY,GAAG,IAAI;IAY5C,gBAAgB,CAAC,IAAI,EAAE,UAAU,GAAG,IAAI;IAOxC,iBAAiB,CAAC,IAAI,EAAE,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,IAAI;IA0BvD,cAAc,CAAC,cAAc,EAAE,MAAM,GAAG,IAAI;IAI5C,kBAAkB;IA2CL,UAAU,CAAC,OAAO,CAAC,EAAE,GAAG,CAAC,qBAAqB;IAepD,YAAY,IAAI,GAAG,CAAC,gBAAgB;IA2DpC,eAAe,IAAI,QAAQ,CAAC,iCAAiC;IA0B7D,cAAc,CACnB,QAAQ,EAAE,GAAG,CAAC,qBAAqB,GAClC,GAAG,CAAC,cAAc;IAed,YAAY,IAAI,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IAIpC,qBAAqB,CAC1B,SAAS,EAAE,GAAG,CAAC,gBAAgB,EAC/B,WAAW,EAAE,MAAM;IA4Bd,sBAAsB,CAAC,YAAY,EAAE,MAAM;CAuFnD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsdoctor/sdk",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.12",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/web-infra-dev/rsdoctor",
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
"lodash": "^4.17.21",
|
|
25
25
|
"open": "^8.4.2",
|
|
26
26
|
"serve-static": "1.16.2",
|
|
27
|
-
"socket.io": "4.
|
|
27
|
+
"socket.io": "4.8.1",
|
|
28
28
|
"source-map": "^0.7.4",
|
|
29
29
|
"tapable": "2.2.1",
|
|
30
|
-
"@rsdoctor/client": "0.4.
|
|
31
|
-
"@rsdoctor/graph": "0.4.
|
|
32
|
-
"@rsdoctor/types": "0.4.
|
|
33
|
-
"@rsdoctor/utils": "0.4.
|
|
30
|
+
"@rsdoctor/client": "0.4.12",
|
|
31
|
+
"@rsdoctor/graph": "0.4.12",
|
|
32
|
+
"@rsdoctor/types": "0.4.12",
|
|
33
|
+
"@rsdoctor/utils": "0.4.12"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/body-parser": "1.19.5",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@types/lodash": "^4.17.13",
|
|
39
39
|
"@types/node": "^16",
|
|
40
40
|
"@types/serve-static": "1.15.7",
|
|
41
|
-
"tslib": "2.
|
|
41
|
+
"tslib": "2.8.1",
|
|
42
42
|
"typescript": "^5.2.2"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"slave.d.ts","sourceRoot":"","sources":["../../../../src/sdk/multiple/slave.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAErC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAI1D,UAAU,uBAAuB;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,GAAG,CAAC,cAAc,CAAC;IACjC,UAAU,EAAE,qBAAqB,CAAC;CACnC;AAED,qBAAa,kBAAmB,SAAQ,WAAW;IACjD,EAAE,EAAE,MAAM,CAAC;IAEX,MAAM,EAAE,qBAAqB,CAAC;IAE9B,SAAgB,KAAK,EAAE,MAAM,CAAC;IAE9B,OAAO,CAAC,YAAY,CAAiB;IAErC,OAAO,CAAC,uBAAuB,CAAc;gBAEjC,EACV,IAAI,EACJ,KAAK,EACL,UAAU,EACV,WAAW,GACZ,EAAE,uBAAuB;IAe1B,OAAO,CAAC,WAAW;IAMnB,IAAI,QAAQ,YAEX;cAEe,WAAW,IAAI,OAAO,CAAC,IAAI,CAAC;cAe5B,aAAa;IAe7B,aAAa,CAAC,SAAS,UAAQ;IAI/B,OAAO,CAAC,IAAI,EAAE,MAAM;IAIpB,eAAe;CAMhB"}
|