@rsdoctor/sdk 0.1.6-beta.1 → 0.1.7

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.
@@ -44,7 +44,9 @@ class BundleDiffAPI extends import_base.BaseAPI {
44
44
  moduleGraph,
45
45
  packageGraph,
46
46
  configs,
47
- moduleCodeMap
47
+ moduleCodeMap,
48
+ // Just usedby bytedance's inner Rsdoctor
49
+ cloudManifestUrl
48
50
  } = sdk.getStoreData();
49
51
  let outputFilename = "";
50
52
  if (typeof configs?.[0]?.config?.output?.filename === "string") {
@@ -58,7 +60,9 @@ class BundleDiffAPI extends import_base.BaseAPI {
58
60
  moduleGraph,
59
61
  packageGraph,
60
62
  outputFilename,
61
- moduleCodeMap
63
+ moduleCodeMap,
64
+ // Just usedby bytedance's inner Rsdoctor
65
+ cloudManifestUrl
62
66
  };
63
67
  }
64
68
  async bundleDiffManifest() {
@@ -23,7 +23,9 @@ class BundleDiffAPI extends BaseAPI {
23
23
  moduleGraph,
24
24
  packageGraph,
25
25
  configs,
26
- moduleCodeMap
26
+ moduleCodeMap,
27
+ // Just usedby bytedance's inner Rsdoctor
28
+ cloudManifestUrl
27
29
  } = sdk.getStoreData();
28
30
  let outputFilename = "";
29
31
  if (typeof configs?.[0]?.config?.output?.filename === "string") {
@@ -37,7 +39,9 @@ class BundleDiffAPI extends BaseAPI {
37
39
  moduleGraph,
38
40
  packageGraph,
39
41
  outputFilename,
40
- moduleCodeMap
42
+ moduleCodeMap,
43
+ // Just usedby bytedance's inner Rsdoctor
44
+ cloudManifestUrl
41
45
  };
42
46
  }
43
47
  async bundleDiffManifest() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdoctor/sdk",
3
- "version": "0.1.6-beta.1",
3
+ "version": "0.1.7",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/web-infra-dev/rsdoctor",
@@ -25,10 +25,10 @@
25
25
  "socket.io": "4.7.2",
26
26
  "source-map": "^0.7.4",
27
27
  "tapable": "2.2.1",
28
- "@rsdoctor/client": "0.1.6-beta.1",
29
- "@rsdoctor/types": "0.1.6-beta.1",
30
- "@rsdoctor/utils": "0.1.6-beta.1",
31
- "@rsdoctor/graph": "0.1.6-beta.1"
28
+ "@rsdoctor/client": "0.1.7",
29
+ "@rsdoctor/graph": "0.1.7",
30
+ "@rsdoctor/types": "0.1.7",
31
+ "@rsdoctor/utils": "0.1.7"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/body-parser": "1.19.2",