agora-appbuilder-core 4.1.9-beta.2 → 4.1.9-beta.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.1.9-beta.2",
3
+ "version": "4.1.9-beta.3",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -421,6 +421,22 @@ module.exports.webSdk = series(
421
421
  general.generateNpmPackage,
422
422
  );
423
423
 
424
+ module.exports.webSdkHosted = series(
425
+ general.cleanBuildDirectory,
426
+ general.createBuildDirectory,
427
+ general.addPackageInfo,
428
+ parallel(
429
+ webSdk.webpack,
430
+ series(
431
+ general.generateApiTypedefs,
432
+ general.bundleApiTypedefs,
433
+ webSdk.generateSdkTypedefs,
434
+ webSdk.bundleSdkTypedefs,
435
+ general.cleanTempFiles,
436
+ ),
437
+ ),
438
+ );
439
+
424
440
  module.exports.makeWsdkTsDefs = series(
425
441
  general.cleanBuildDirectory,
426
442
  general.createBuildDirectory,
@@ -77,8 +77,8 @@ const DefaultConfig = {
77
77
  CHAT_ORG_NAME: '',
78
78
  CHAT_APP_NAME: '',
79
79
  CHAT_URL: '',
80
- CLI_VERSION: '3.1.9-beta.2',
81
- CORE_VERSION: '4.1.9-beta.2',
80
+ CLI_VERSION: '3.1.9-beta.3',
81
+ CORE_VERSION: '4.1.9-beta.3',
82
82
  DISABLE_LANDSCAPE_MODE: false,
83
83
  STT_AUTO_START: false,
84
84
  CLOUD_RECORDING_AUTO_START: false,
@@ -16,6 +16,8 @@
16
16
  "web:build": "cross-env TARGET=web NODE_ENV=production webpack --config webpack.web.config.js",
17
17
  "web-sdk": "cross-env TARGET=wsdk NODE_ENV=development gulp webSdk",
18
18
  "web-sdk:build": "cross-env TARGET=wsdk NODE_ENV=production gulp webSdk",
19
+ "web-sdk-hosted": "cross-env TARGET=wsdk NODE_ENV=development gulp webSdkHosted",
20
+ "web-sdk-hosted:build": "cross-env TARGET=wsdk NODE_ENV=production gulp webSdkHosted",
19
21
  "react-sdk": "cross-env TARGET=rsdk NODE_ENV=development gulp reactSdk",
20
22
  "react-sdk:build": "cross-env TARGET=rsdk NODE_ENV=production gulp reactSdk",
21
23
  "react-sdk:esbuild": "cross-env TARGET=rsdk NODE_ENV=production gulp reactSdkEsbuild",