@extscreen/es-core 2.2.61 → 2.2.62

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.
Files changed (2) hide show
  1. package/dist/index.js +7 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2313,6 +2313,7 @@ class ESManager {
2313
2313
  _esMiniProgramPath = null;
2314
2314
  _esKitVersionCode = -1;
2315
2315
  _esSdkSchemes = [];
2316
+ _runtimePath = null;
2316
2317
 
2317
2318
  _esSdkInfo = null;
2318
2319
 
@@ -2335,6 +2336,8 @@ class ESManager {
2335
2336
  if (result.eskit_ver_code) {
2336
2337
  this._esKitVersionCode = result.eskit_ver_code;
2337
2338
  }
2339
+ //
2340
+ this._runtimePath = result.runtimePath;
2338
2341
  }
2339
2342
  return Promise.resolve();
2340
2343
  }
@@ -2369,6 +2372,10 @@ class ESManager {
2369
2372
  return this._esMiniProgramPath;
2370
2373
  }
2371
2374
 
2375
+ getESAppRuntimePath() {
2376
+ return this._runtimePath;
2377
+ }
2378
+
2372
2379
  getESSDKSupportSchemes() {
2373
2380
  return this._esSdkSchemes;
2374
2381
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extscreen/es-core",
3
- "version": "2.2.61",
3
+ "version": "2.2.62",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {