diff --git a/Ability/PageAbility/README.md b/Ability/PageAbility/README.md index 131672764c41b5ae5a06ab21983d360cd8637653..ab2a47b5ba6782694ed4c37849362aa725481dcf 100644 --- a/Ability/PageAbility/README.md +++ b/Ability/PageAbility/README.md @@ -37,15 +37,9 @@ Ability:Ability是应用所具备能力的抽象,也是应用程序的重要 3. 搭建开发环境 - 1. 开始前请参考[下载与安装软件](https://developer.harmonyos.com/cn/docs/documentation/doc-guides/software_install-0000001053582415)、[配置开发环境](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/configuring-openharmony-sdk.md),完成DevEco Studio的安装和开发环境配置。 - 2. 开发环境配置完成后,请参考[使用工程向导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/use-wizard-to-create-project.md)创建工程,使用JS或者eTS语言开发、“Application”为例,模板选择“\[Standard\]Empty Ability”。 - 3. 工程创建完成后,可参考下面章节进行代码编写,使用真机进行调测: - - - [配置OpenHarmony应用签名信息](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/configuring-openharmony-app-signature.md) - - [hap包安装指导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/installing-openharmony-app.md) - - 工程示例: - - ![](figures/截图.png) + 1. 开始前请参考[工具准备](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-overview.md#%E5%B7%A5%E5%85%B7%E5%87%86%E5%A4%87),完成DevEco Studio的安装和开发环境配置。 + 2. 开发环境配置完成后,请参考[使用工程向导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E5%88%9B%E5%BB%BAets%E5%B7%A5%E7%A8%8B)创建工程(模板选择“Empty Ability”),选择JS或者eTS语言开发。 + 3. 工程创建完成后,选择使用[真机进行调测](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E4%BD%BF%E7%94%A8%E7%9C%9F%E6%9C%BA%E8%BF%90%E8%A1%8C%E5%BA%94%E7%94%A8)。 # 任务一:Ability内页面跳转 diff --git a/Ability/PageAbility/build-profile.json5 b/Ability/PageAbility/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..3854f71fc436e7d67fb03828698562f4dc8a3abb --- /dev/null +++ b/Ability/PageAbility/build-profile.json5 @@ -0,0 +1,27 @@ +{ + "app": { + "signingConfigs": [], + "compileSdkVersion": 8, + "compatibleSdkVersion": 8, + "products": [ + { + "name": "default", + "signingConfig": "default", + } + ] + }, + "modules": [ + { + "name": "entry", + "srcPath": "./entry", + "targets": [ + { + "name": "default", + "applyToProducts": [ + "default" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Ability/PageAbility/build.gradle b/Ability/PageAbility/build.gradle deleted file mode 100644 index 8091e0ece10575993ba570722aadd6788144f460..0000000000000000000000000000000000000000 --- a/Ability/PageAbility/build.gradle +++ /dev/null @@ -1,34 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -apply plugin: 'com.huawei.ohos.app' - -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - supportSystem "standard" -} - -buildscript { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } - dependencies { - classpath 'com.huawei.ohos:hap:3.0.3.4' - classpath 'com.huawei.ohos:decctest:1.2.6.0' - } -} - -allprojects { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } -} diff --git a/Ability/PageAbility/entry/build-profile.json5 b/Ability/PageAbility/entry/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..ae58d1d0a70c602c9cfe1909b00dfec899ba1944 --- /dev/null +++ b/Ability/PageAbility/entry/build-profile.json5 @@ -0,0 +1,13 @@ +{ + "apiType": 'faMode', + "buildOption": { + }, + "targets": [ + { + "name": "default", + }, + { + "name": "ohosTest", + } + ] +} \ No newline at end of file diff --git a/Ability/PageAbility/entry/hvigorfile.js b/Ability/PageAbility/entry/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..bcec4c99653062cbf17702c40a2dd2a7b809b81a --- /dev/null +++ b/Ability/PageAbility/entry/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyHapTasks diff --git a/Ability/PageAbility/entry/package.json b/Ability/PageAbility/entry/package.json new file mode 100644 index 0000000000000000000000000000000000000000..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 --- /dev/null +++ b/Ability/PageAbility/entry/package.json @@ -0,0 +1,13 @@ +{ + "name": "entry", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "module" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} +} diff --git a/Ability/PageAbility/gradle/wrapper/gradle-wrapper.jar b/Ability/PageAbility/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 490fda8577df6c95960ba7077c43220e5bb2c0d9..0000000000000000000000000000000000000000 Binary files a/Ability/PageAbility/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/Ability/PageAbility/gradle/wrapper/gradle-wrapper.properties b/Ability/PageAbility/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index f59159e865d4b59feb1b8c44b001f62fc5d58df4..0000000000000000000000000000000000000000 --- a/Ability/PageAbility/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://repo.huaweicloud.com/gradle/gradle-6.3-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/Ability/PageAbility/hvigorfile.js b/Ability/PageAbility/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..cff9f0dfcf8cb00cca34e7f50d61380cf5496868 --- /dev/null +++ b/Ability/PageAbility/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyAppTasks \ No newline at end of file diff --git a/Ability/PageAbility/package.json b/Ability/PageAbility/package.json new file mode 100644 index 0000000000000000000000000000000000000000..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca --- /dev/null +++ b/Ability/PageAbility/package.json @@ -0,0 +1,17 @@ +{ + "name": "myapplication", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "project" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": { + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" + } +} diff --git a/Ability/PageAbility/settings.gradle b/Ability/PageAbility/settings.gradle deleted file mode 100644 index 4773db73233a570c2d0c01a22e75321acfbf7a07..0000000000000000000000000000000000000000 --- a/Ability/PageAbility/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -include ':entry' diff --git a/Data/Database/build-profile.json5 b/Data/Database/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..3854f71fc436e7d67fb03828698562f4dc8a3abb --- /dev/null +++ b/Data/Database/build-profile.json5 @@ -0,0 +1,27 @@ +{ + "app": { + "signingConfigs": [], + "compileSdkVersion": 8, + "compatibleSdkVersion": 8, + "products": [ + { + "name": "default", + "signingConfig": "default", + } + ] + }, + "modules": [ + { + "name": "entry", + "srcPath": "./entry", + "targets": [ + { + "name": "default", + "applyToProducts": [ + "default" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Data/Database/build.gradle b/Data/Database/build.gradle deleted file mode 100644 index c2c8bbaed13747b913f19cef893f515bc32d02a7..0000000000000000000000000000000000000000 --- a/Data/Database/build.gradle +++ /dev/null @@ -1,34 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -apply plugin: 'com.huawei.ohos.app' - -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - supportSystem "standard" -} - -buildscript { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } - dependencies { - classpath 'com.huawei.ohos:hap:3.0.3.4' - classpath 'com.huawei.ohos:decctest:1.2.6.0' - } -} - -allprojects { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } -} diff --git a/Data/Database/entry/build-profile.json5 b/Data/Database/entry/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..09fbaf41fa38c8543903a0e47561a25e6d983cba --- /dev/null +++ b/Data/Database/entry/build-profile.json5 @@ -0,0 +1,10 @@ +{ + "apiType": 'faMode', + "buildOption": { + }, + "targets": [ + { + "name": "default", + } + ] +} \ No newline at end of file diff --git a/Data/Database/entry/build.gradle b/Data/Database/entry/build.gradle deleted file mode 100644 index b89f8de511d5db17152f4cea9ec3d6ab72a0b9b3..0000000000000000000000000000000000000000 --- a/Data/Database/entry/build.gradle +++ /dev/null @@ -1,22 +0,0 @@ -apply plugin: 'com.huawei.ohos.hap' -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - defaultConfig { - compatibleSdkVersion 7 - } - buildTypes { - release { - proguardOpt { - proguardEnabled false - rulesFiles 'proguard-rules.pro' - } - } - } - -} - -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) - testImplementation 'junit:junit:4.13' -} diff --git a/Data/Database/entry/hvigorfile.js b/Data/Database/entry/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..bcec4c99653062cbf17702c40a2dd2a7b809b81a --- /dev/null +++ b/Data/Database/entry/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyHapTasks diff --git a/Data/Database/entry/package.json b/Data/Database/entry/package.json index 0967ef424bce6791893e9a57bb952f80fd536e93..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 100644 --- a/Data/Database/entry/package.json +++ b/Data/Database/entry/package.json @@ -1 +1,13 @@ -{} +{ + "name": "entry", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "module" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} +} diff --git a/Data/Database/entry/src/main/config.json b/Data/Database/entry/src/main/config.json index f84aa1141eef17407c4177de85433aab0256529f..8e9b10d80bb9d64a46f18492537c58c9376c9041 100644 --- a/Data/Database/entry/src/main/config.json +++ b/Data/Database/entry/src/main/config.json @@ -1,7 +1,7 @@ { "app": { - "bundleName": "com.huawei.cookbook", - "vendor": "huawei", + "vendor": "example", + "bundleName": "com.example.database", "version": { "code": 1000000, "name": "1.0.0" @@ -11,7 +11,7 @@ "module": { "package": "com.huawei.database", "name": ".MyApplication", - "mainAbility": "com.huawei.database.MainAbility", + "mainAbility": ".MainAbility", "deviceType": [ "phone" ], @@ -34,9 +34,9 @@ } ], "orientation": "unspecified", - "name": "com.huawei.database.MainAbility", + "name": ".MainAbility", "icon": "$media:icon", - "srcPath": "default", + "srcPath": "MainAbility", "srcLanguage": "js", "description": "$string:mainability_description", "formsEnabled": false, @@ -50,7 +50,7 @@ "pages": [ "pages/index/index" ], - "name": "default", + "name": ".MainAbility", "window": { "designWidth": 720, "autoDesignWidth": false diff --git a/Data/Database/entry/src/main/js/default/app.js b/Data/Database/entry/src/main/js/MainAbility/app.js similarity index 100% rename from Data/Database/entry/src/main/js/default/app.js rename to Data/Database/entry/src/main/js/MainAbility/app.js diff --git a/Data/Database/entry/src/main/js/default/common/css/style.css b/Data/Database/entry/src/main/js/MainAbility/common/css/style.css similarity index 100% rename from Data/Database/entry/src/main/js/default/common/css/style.css rename to Data/Database/entry/src/main/js/MainAbility/common/css/style.css diff --git a/Data/Database/entry/src/main/js/default/i18n/en-US.json b/Data/Database/entry/src/main/js/MainAbility/i18n/en-US.json similarity index 100% rename from Data/Database/entry/src/main/js/default/i18n/en-US.json rename to Data/Database/entry/src/main/js/MainAbility/i18n/en-US.json diff --git a/Data/Database/entry/src/main/js/default/i18n/zh-CN.json b/Data/Database/entry/src/main/js/MainAbility/i18n/zh-CN.json similarity index 100% rename from Data/Database/entry/src/main/js/default/i18n/zh-CN.json rename to Data/Database/entry/src/main/js/MainAbility/i18n/zh-CN.json diff --git a/Data/Database/entry/src/main/js/default/pages/index/index.css b/Data/Database/entry/src/main/js/MainAbility/pages/index/index.css similarity index 100% rename from Data/Database/entry/src/main/js/default/pages/index/index.css rename to Data/Database/entry/src/main/js/MainAbility/pages/index/index.css diff --git a/Data/Database/entry/src/main/js/default/pages/index/index.hml b/Data/Database/entry/src/main/js/MainAbility/pages/index/index.hml similarity index 100% rename from Data/Database/entry/src/main/js/default/pages/index/index.hml rename to Data/Database/entry/src/main/js/MainAbility/pages/index/index.hml diff --git a/Data/Database/entry/src/main/js/default/pages/index/index.js b/Data/Database/entry/src/main/js/MainAbility/pages/index/index.js similarity index 100% rename from Data/Database/entry/src/main/js/default/pages/index/index.js rename to Data/Database/entry/src/main/js/MainAbility/pages/index/index.js diff --git a/Data/Database/gradle/wrapper/gradle-wrapper.jar b/Data/Database/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 490fda8577df6c95960ba7077c43220e5bb2c0d9..0000000000000000000000000000000000000000 Binary files a/Data/Database/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/Data/Database/gradle/wrapper/gradle-wrapper.properties b/Data/Database/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index f59159e865d4b59feb1b8c44b001f62fc5d58df4..0000000000000000000000000000000000000000 --- a/Data/Database/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://repo.huaweicloud.com/gradle/gradle-6.3-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/Data/Database/hvigorfile.js b/Data/Database/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..cff9f0dfcf8cb00cca34e7f50d61380cf5496868 --- /dev/null +++ b/Data/Database/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyAppTasks \ No newline at end of file diff --git a/Data/Database/package.json b/Data/Database/package.json new file mode 100644 index 0000000000000000000000000000000000000000..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca --- /dev/null +++ b/Data/Database/package.json @@ -0,0 +1,17 @@ +{ + "name": "myapplication", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "project" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": { + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" + } +} diff --git a/Data/Database/settings.gradle b/Data/Database/settings.gradle deleted file mode 100644 index 4773db73233a570c2d0c01a22e75321acfbf7a07..0000000000000000000000000000000000000000 --- a/Data/Database/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -include ':entry' diff --git a/Data/JSRelationshipData/README.md b/Data/JSRelationshipData/README.md index a77b02eb0c7a5cc1054e17f0a14c8188ce8894d0..204d3f8cff89753fae3de29df937c866969eb15b 100644 --- a/Data/JSRelationshipData/README.md +++ b/Data/JSRelationshipData/README.md @@ -5,29 +5,23 @@ # 搭建OpenHarmony环境 完成本篇Codelab我们首先要完成开发环境的搭建,本示例以**Hi3516DV300**开发板为例,参照以下步骤进行: -1. [获取OpenHarmony系统版本](https://gitee.com/openharmony/docs/blob/master/zh-cn/device-dev/get-code/sourcecode-acquire.md#%E8%8E%B7%E5%8F%96%E6%96%B9%E5%BC%8F3%E4%BB%8E%E9%95%9C%E5%83%8F%E7%AB%99%E7%82%B9%E8%8E%B7%E5%8F%96):标准系统解决方案(二进制) +1. [获取OpenHarmony系统版本](https://gitee.com/openharmony/docs/blob/master/zh-cn/device-dev/get-code/sourcecode-acquire.md#%E8%8E%B7%E5%8F%96%E6%96%B9%E5%BC%8F3%E4%BB%8E%E9%95%9C%E5%83%8F%E7%AB%99%E7%82%B9%E8%8E%B7%E5%8F%96):标准系统解决方案(二进制) 以3.0版本为例: ![](figures/取版本.png) -2. 搭建烧录环境 +2. 搭建烧录环境 1. [完成DevEco Device Tool的安装](https://gitee.com/openharmony/docs/blob/master/zh-cn/device-dev/quick-start/quickstart-standard-env-setup.md) 2. [完成Hi3516开发板的烧录](https://gitee.com/openharmony/docs/blob/master/zh-cn/device-dev/quick-start/quickstart-lite-steps-hi3516-burn.md) -3. 搭建开发环境 +3. 搭建开发环境 - 1. 开始前请参考[下载与安装软件](https://developer.harmonyos.com/cn/docs/documentation/doc-guides/software_install-0000001053582415)、[配置开发环境](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/configuring-openharmony-sdk.md),完成DevEco Studio的安装和开发环境配置。 - 2. 开发环境配置完成后,请参考[使用工程向导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/use-wizard-to-create-project.md)创建工程,使用JS或者eTS语言开发、“Application”为例,模板选择“\[Standard\]Empty Ability”。 - 3. 工程创建完成后,可参考下面章节进行代码编写,使用真机进行调测: - - - [配置OpenHarmony应用签名信息](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/configuring-openharmony-app-signature.md) - - [hap包安装指导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/installing-openharmony-app.md) - - 工程示例: - - ![](figures/截图.png) + 1. 开始前请参考[工具准备](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-overview.md#%E5%B7%A5%E5%85%B7%E5%87%86%E5%A4%87),完成DevEco Studio的安装和开发环境配置。 + 2. 开发环境配置完成后,请参考[使用工程向导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E5%88%9B%E5%BB%BAets%E5%B7%A5%E7%A8%8B)创建工程(模板选择“Empty Ability”),选择JS或者eTS语言开发。 + 3. 工程创建完成后,选择使用[真机进行调测](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E4%BD%BF%E7%94%A8%E7%9C%9F%E6%9C%BA%E8%BF%90%E8%A1%8C%E5%BA%94%E7%94%A8)。 # 导入模块 diff --git a/Data/JSRelationshipData/build-profile.json5 b/Data/JSRelationshipData/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..3854f71fc436e7d67fb03828698562f4dc8a3abb --- /dev/null +++ b/Data/JSRelationshipData/build-profile.json5 @@ -0,0 +1,27 @@ +{ + "app": { + "signingConfigs": [], + "compileSdkVersion": 8, + "compatibleSdkVersion": 8, + "products": [ + { + "name": "default", + "signingConfig": "default", + } + ] + }, + "modules": [ + { + "name": "entry", + "srcPath": "./entry", + "targets": [ + { + "name": "default", + "applyToProducts": [ + "default" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Data/JSRelationshipData/build.gradle b/Data/JSRelationshipData/build.gradle deleted file mode 100644 index c2c8bbaed13747b913f19cef893f515bc32d02a7..0000000000000000000000000000000000000000 --- a/Data/JSRelationshipData/build.gradle +++ /dev/null @@ -1,34 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -apply plugin: 'com.huawei.ohos.app' - -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - supportSystem "standard" -} - -buildscript { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } - dependencies { - classpath 'com.huawei.ohos:hap:3.0.3.4' - classpath 'com.huawei.ohos:decctest:1.2.6.0' - } -} - -allprojects { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } -} diff --git a/Data/JSRelationshipData/entry/build-profile.json5 b/Data/JSRelationshipData/entry/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..09fbaf41fa38c8543903a0e47561a25e6d983cba --- /dev/null +++ b/Data/JSRelationshipData/entry/build-profile.json5 @@ -0,0 +1,10 @@ +{ + "apiType": 'faMode', + "buildOption": { + }, + "targets": [ + { + "name": "default", + } + ] +} \ No newline at end of file diff --git a/Data/JSRelationshipData/entry/build.gradle b/Data/JSRelationshipData/entry/build.gradle deleted file mode 100644 index 68ec4e15705e1c4fd6ca07fe7ad0444a86546c7a..0000000000000000000000000000000000000000 --- a/Data/JSRelationshipData/entry/build.gradle +++ /dev/null @@ -1,23 +0,0 @@ -apply plugin: 'com.huawei.ohos.hap' -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - defaultConfig { - compatibleSdkVersion 7 - } - buildTypes { - release { - proguardOpt { - proguardEnabled false - rulesFiles 'proguard-rules.pro' - } - } - } - - -} - -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) - testImplementation 'junit:junit:4.13' -} diff --git a/Data/JSRelationshipData/entry/hvigorfile.js b/Data/JSRelationshipData/entry/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..bcec4c99653062cbf17702c40a2dd2a7b809b81a --- /dev/null +++ b/Data/JSRelationshipData/entry/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyHapTasks diff --git a/Data/JSRelationshipData/entry/package.json b/Data/JSRelationshipData/entry/package.json index 0967ef424bce6791893e9a57bb952f80fd536e93..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 100644 --- a/Data/JSRelationshipData/entry/package.json +++ b/Data/JSRelationshipData/entry/package.json @@ -1 +1,13 @@ -{} +{ + "name": "entry", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "module" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} +} diff --git a/Data/JSRelationshipData/entry/src/main/js/MainAbility/pages/index/index.css b/Data/JSRelationshipData/entry/src/main/js/MainAbility/pages/index/index.css index cebad99c4b856f30e936602a8ff52bf676fb295b..eaadea9a0fc241b85d56d998ab097502d8b50529 100644 --- a/Data/JSRelationshipData/entry/src/main/js/MainAbility/pages/index/index.css +++ b/Data/JSRelationshipData/entry/src/main/js/MainAbility/pages/index/index.css @@ -22,7 +22,7 @@ .title { height: 70vp; width: 100%; - flex-direction: row; +/* flex-direction: row;*/ } .title-left,.title-right { @@ -59,7 +59,7 @@ .list-title { height: 40vp; width: 100%; - flex-direction: row; +/* flex-direction: row;*/ } .list-title-left,.list-title-center { @@ -108,7 +108,7 @@ } .list-item-data { - flex-direction: row; +/* flex-direction: row;*/ } .list-item-divider { @@ -168,7 +168,7 @@ width: 100%; height: 60vp; font-size: 16fp; - flex-direction: row; +/* flex-direction: row;*/ } .dialog-input text { diff --git a/Data/JSRelationshipData/entry/src/main/js/MainAbility/pages/index/index.hml b/Data/JSRelationshipData/entry/src/main/js/MainAbility/pages/index/index.hml index 4933798c86a0a8f94bd3580871188d934de6a874..c12fc458bb2d8ad3ca4fe85094531776434bda7c 100644 --- a/Data/JSRelationshipData/entry/src/main/js/MainAbility/pages/index/index.hml +++ b/Data/JSRelationshipData/entry/src/main/js/MainAbility/pages/index/index.hml @@ -1,4 +1,4 @@ -/* +
@@ -52,22 +52,24 @@ -
-
- {{$item.name}} -
-
- {{$item.age}} -
-
- {{$item.gender}} -
-
- 编辑 - 删除 +
+
+
+ {{$item.name}} +
+
+ {{$item.age}} +
+
+ {{$item.gender}} +
+
+ 编辑 + 删除 +
+
- diff --git a/Data/JSRelationshipData/gradle/wrapper/gradle-wrapper.jar b/Data/JSRelationshipData/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 490fda8577df6c95960ba7077c43220e5bb2c0d9..0000000000000000000000000000000000000000 Binary files a/Data/JSRelationshipData/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/Data/JSRelationshipData/gradle/wrapper/gradle-wrapper.properties b/Data/JSRelationshipData/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index f59159e865d4b59feb1b8c44b001f62fc5d58df4..0000000000000000000000000000000000000000 --- a/Data/JSRelationshipData/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://repo.huaweicloud.com/gradle/gradle-6.3-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/Data/JSRelationshipData/hvigorfile.js b/Data/JSRelationshipData/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..cff9f0dfcf8cb00cca34e7f50d61380cf5496868 --- /dev/null +++ b/Data/JSRelationshipData/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyAppTasks \ No newline at end of file diff --git a/Data/JSRelationshipData/package.json b/Data/JSRelationshipData/package.json new file mode 100644 index 0000000000000000000000000000000000000000..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca --- /dev/null +++ b/Data/JSRelationshipData/package.json @@ -0,0 +1,17 @@ +{ + "name": "myapplication", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "project" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": { + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" + } +} diff --git a/Data/JSRelationshipData/settings.gradle b/Data/JSRelationshipData/settings.gradle deleted file mode 100644 index 4773db73233a570c2d0c01a22e75321acfbf7a07..0000000000000000000000000000000000000000 --- a/Data/JSRelationshipData/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -include ':entry' diff --git a/Data/JsDistributedData/README.md b/Data/JsDistributedData/README.md index 5577296462209e86ebd34213271ebbf236fcc581..027b62cf4758ef9c95de50200747656b7ebef384 100644 --- a/Data/JsDistributedData/README.md +++ b/Data/JsDistributedData/README.md @@ -9,29 +9,23 @@ 完成本篇Codelab我们首先要完成开发环境的搭建,本示例以**Hi3516DV300**开发板为例,参照以下步骤进行: -1. [获取OpenHarmony系统版本](https://gitee.com/openharmony/docs/blob/master/zh-cn/device-dev/get-code/sourcecode-acquire.md#%E8%8E%B7%E5%8F%96%E6%96%B9%E5%BC%8F3%E4%BB%8E%E9%95%9C%E5%83%8F%E7%AB%99%E7%82%B9%E8%8E%B7%E5%8F%96):标准系统解决方案(二进制) +1. [获取OpenHarmony系统版本](https://gitee.com/openharmony/docs/blob/master/zh-cn/device-dev/get-code/sourcecode-acquire.md#%E8%8E%B7%E5%8F%96%E6%96%B9%E5%BC%8F3%E4%BB%8E%E9%95%9C%E5%83%8F%E7%AB%99%E7%82%B9%E8%8E%B7%E5%8F%96):标准系统解决方案(二进制) 以3.0版本为例: ![](figures/取版本.png) -2. 搭建烧录环境 +2. 搭建烧录环境 1. [完成DevEco Device Tool的安装](https://gitee.com/openharmony/docs/blob/master/zh-cn/device-dev/quick-start/quickstart-standard-env-setup.md) 2. [完成Hi3516开发板的烧录](https://gitee.com/openharmony/docs/blob/master/zh-cn/device-dev/quick-start/quickstart-lite-steps-hi3516-burn.md) -3. 搭建开发环境 +3. 搭建开发环境 - 1. 开始前请参考[下载与安装软件](https://developer.harmonyos.com/cn/docs/documentation/doc-guides/software_install-0000001053582415)、[配置开发环境](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/configuring-openharmony-sdk.md),完成DevEco Studio的安装和开发环境配置。 - 2. 开发环境配置完成后,请参考[使用工程向导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/use-wizard-to-create-project.md)创建工程,使用JS或者eTS语言开发、“Application”为例,模板选择“\[Standard\]Empty Ability”。 - 3. 工程创建完成后,可参考下面章节进行代码编写,使用真机进行调测: - - - [配置OpenHarmony应用签名信息](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/configuring-openharmony-app-signature.md) - - [hap包安装指导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/installing-openharmony-app.md) - - 工程示例: - - ![](figures/截图.png) + 1. 开始前请参考[工具准备](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-overview.md#%E5%B7%A5%E5%85%B7%E5%87%86%E5%A4%87),完成DevEco Studio的安装和开发环境配置。 + 2. 开发环境配置完成后,请参考[使用工程向导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E5%88%9B%E5%BB%BAets%E5%B7%A5%E7%A8%8B)创建工程(模板选择“Empty Ability”),选择JS或者eTS语言开发。 + 3. 工程创建完成后,选择使用[真机进行调测](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E4%BD%BF%E7%94%A8%E7%9C%9F%E6%9C%BA%E8%BF%90%E8%A1%8C%E5%BA%94%E7%94%A8)。 # 代码结构解读 diff --git a/Data/JsDistributedData/build-profile.json5 b/Data/JsDistributedData/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..3854f71fc436e7d67fb03828698562f4dc8a3abb --- /dev/null +++ b/Data/JsDistributedData/build-profile.json5 @@ -0,0 +1,27 @@ +{ + "app": { + "signingConfigs": [], + "compileSdkVersion": 8, + "compatibleSdkVersion": 8, + "products": [ + { + "name": "default", + "signingConfig": "default", + } + ] + }, + "modules": [ + { + "name": "entry", + "srcPath": "./entry", + "targets": [ + { + "name": "default", + "applyToProducts": [ + "default" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Data/JsDistributedData/build.gradle b/Data/JsDistributedData/build.gradle deleted file mode 100644 index d79190c37ffeb7dbfd62e82f424bd0c401e95c72..0000000000000000000000000000000000000000 --- a/Data/JsDistributedData/build.gradle +++ /dev/null @@ -1,34 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -apply plugin: 'com.huawei.ohos.app' - -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - supportSystem "standard" -} - -buildscript { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } - dependencies { - classpath 'com.huawei.ohos:hap:3.0.3.2' - classpath 'com.huawei.ohos:decctest:1.2.6.0' - } -} - -allprojects { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } -} diff --git a/Data/JsDistributedData/entry/build-profile.json5 b/Data/JsDistributedData/entry/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..09fbaf41fa38c8543903a0e47561a25e6d983cba --- /dev/null +++ b/Data/JsDistributedData/entry/build-profile.json5 @@ -0,0 +1,10 @@ +{ + "apiType": 'faMode', + "buildOption": { + }, + "targets": [ + { + "name": "default", + } + ] +} \ No newline at end of file diff --git a/Data/JsDistributedData/entry/build.gradle b/Data/JsDistributedData/entry/build.gradle deleted file mode 100644 index 68ec4e15705e1c4fd6ca07fe7ad0444a86546c7a..0000000000000000000000000000000000000000 --- a/Data/JsDistributedData/entry/build.gradle +++ /dev/null @@ -1,23 +0,0 @@ -apply plugin: 'com.huawei.ohos.hap' -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - defaultConfig { - compatibleSdkVersion 7 - } - buildTypes { - release { - proguardOpt { - proguardEnabled false - rulesFiles 'proguard-rules.pro' - } - } - } - - -} - -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) - testImplementation 'junit:junit:4.13' -} diff --git a/Data/JsDistributedData/entry/hvigorfile.js b/Data/JsDistributedData/entry/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..bcec4c99653062cbf17702c40a2dd2a7b809b81a --- /dev/null +++ b/Data/JsDistributedData/entry/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyHapTasks diff --git a/Data/JsDistributedData/entry/package-lock.json b/Data/JsDistributedData/entry/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..15bc7145be1490029883067847743ea7134cf545 --- /dev/null +++ b/Data/JsDistributedData/entry/package-lock.json @@ -0,0 +1,5 @@ +{ + "name": "entry", + "version": "1.0.0", + "lockfileVersion": 1 +} diff --git a/Data/JsDistributedData/entry/package.json b/Data/JsDistributedData/entry/package.json index 0967ef424bce6791893e9a57bb952f80fd536e93..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 100644 --- a/Data/JsDistributedData/entry/package.json +++ b/Data/JsDistributedData/entry/package.json @@ -1 +1,13 @@ -{} +{ + "name": "entry", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "module" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} +} diff --git a/Data/JsDistributedData/entry/src/main/config.json b/Data/JsDistributedData/entry/src/main/config.json index c21b6a9cd47620f27aaafb7f64f5de060f5f16ba..36375a4607c0a4f457dd0aefe84817a69c91d0ed 100644 --- a/Data/JsDistributedData/entry/src/main/config.json +++ b/Data/JsDistributedData/entry/src/main/config.json @@ -1,7 +1,7 @@ { "app": { - "bundleName": "com.huawei.cookbook", - "vendor": "huawei", + "vendor": "example", + "bundleName": "com.example.myapplication", "version": { "code": 1000000, "name": "1.0.0" @@ -9,18 +9,10 @@ }, "deviceConfig": {}, "module": { - "package": "com.huawei.myapplication", - "name": ".MyApplication", "mainAbility": ".MainAbility", "deviceType": [ "phone" ], - "distro": { - "deliveryWithInstall": true, - "moduleName": "entry", - "moduleType": "entry", - "installationFree": true - }, "abilities": [ { "skills": [ @@ -46,6 +38,15 @@ "launchType": "standard" } ], + "distro": { + "moduleType": "entry", + "installationFree": false, + "deliveryWithInstall": true, + "moduleName": "entry" + }, + "package": "com.example.myapplication", + "srcPath": "", + "name": ".entry", "js": [ { "pages": [ diff --git a/Data/JsDistributedData/entry/src/main/js/MainAbility/pages/index/index.css b/Data/JsDistributedData/entry/src/main/js/MainAbility/pages/index/index.css index cebad99c4b856f30e936602a8ff52bf676fb295b..2e327616fd009cefb13755bf97786e02a4b8fb13 100644 --- a/Data/JsDistributedData/entry/src/main/js/MainAbility/pages/index/index.css +++ b/Data/JsDistributedData/entry/src/main/js/MainAbility/pages/index/index.css @@ -22,7 +22,7 @@ .title { height: 70vp; width: 100%; - flex-direction: row; +/* flex-direction: row;*/ } .title-left,.title-right { diff --git a/Data/JsDistributedData/entry/src/main/js/MainAbility/pages/index/index.hml b/Data/JsDistributedData/entry/src/main/js/MainAbility/pages/index/index.hml index 44ef387f95827dc9d2c060608aad0bbd6f5d3301..64ead7812c871796d2d334efabcf41d803f4cf97 100644 --- a/Data/JsDistributedData/entry/src/main/js/MainAbility/pages/index/index.hml +++ b/Data/JsDistributedData/entry/src/main/js/MainAbility/pages/index/index.hml @@ -1,4 +1,4 @@ -/* +
@@ -47,19 +47,21 @@ -
-
- {{$item.name}} -
-
- {{$item.phone}} -
-
- 编辑 - 删除 +
+
+
+ {{$item.name}} +
+
+ {{$item.phone}} +
+
+ 编辑 + 删除 +
+
- diff --git a/Data/JsDistributedData/gradle/wrapper/gradle-wrapper.jar b/Data/JsDistributedData/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 490fda8577df6c95960ba7077c43220e5bb2c0d9..0000000000000000000000000000000000000000 Binary files a/Data/JsDistributedData/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/Data/JsDistributedData/gradle/wrapper/gradle-wrapper.properties b/Data/JsDistributedData/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index f59159e865d4b59feb1b8c44b001f62fc5d58df4..0000000000000000000000000000000000000000 --- a/Data/JsDistributedData/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://repo.huaweicloud.com/gradle/gradle-6.3-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/Data/JsDistributedData/hvigorfile.js b/Data/JsDistributedData/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..cff9f0dfcf8cb00cca34e7f50d61380cf5496868 --- /dev/null +++ b/Data/JsDistributedData/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyAppTasks \ No newline at end of file diff --git a/Data/JsDistributedData/package.json b/Data/JsDistributedData/package.json new file mode 100644 index 0000000000000000000000000000000000000000..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca --- /dev/null +++ b/Data/JsDistributedData/package.json @@ -0,0 +1,17 @@ +{ + "name": "myapplication", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "project" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": { + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" + } +} diff --git a/Data/JsDistributedData/settings.gradle b/Data/JsDistributedData/settings.gradle deleted file mode 100644 index 4773db73233a570c2d0c01a22e75321acfbf7a07..0000000000000000000000000000000000000000 --- a/Data/JsDistributedData/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -include ':entry' diff --git a/Data/NotePad_OH_ETS/entry/package.json b/Data/NotePad_OH_ETS/entry/package.json index 1ffd85f3c9471f6b662708c65075b7504ec35ac8..f8964f7a229e8f1de91bcd74a9eac702cca31283 100644 --- a/Data/NotePad_OH_ETS/entry/package.json +++ b/Data/NotePad_OH_ETS/entry/package.json @@ -6,6 +6,5 @@ "buildTool": "hvigor", "directoryLevel": "module" }, - "dependencies": { - } + "dependencies": {} } diff --git a/Data/NotePad_OH_ETS/package.json b/Data/NotePad_OH_ETS/package.json index 0667c19f1c11cdc175593fbe41c0e987f0ff6ecd..89442745a8ce70c6433aee1401a20598007882ff 100644 --- a/Data/NotePad_OH_ETS/package.json +++ b/Data/NotePad_OH_ETS/package.json @@ -14,4 +14,4 @@ "@ohos/hvigor": "1.0.6", "@ohos/hvigor-ohos-plugin": "1.0.6" } -} \ No newline at end of file +} diff --git a/Distributed/DistributeDatabaseDrawEts/build-profile.json5 b/Distributed/DistributeDatabaseDrawEts/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..3854f71fc436e7d67fb03828698562f4dc8a3abb --- /dev/null +++ b/Distributed/DistributeDatabaseDrawEts/build-profile.json5 @@ -0,0 +1,27 @@ +{ + "app": { + "signingConfigs": [], + "compileSdkVersion": 8, + "compatibleSdkVersion": 8, + "products": [ + { + "name": "default", + "signingConfig": "default", + } + ] + }, + "modules": [ + { + "name": "entry", + "srcPath": "./entry", + "targets": [ + { + "name": "default", + "applyToProducts": [ + "default" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Distributed/DistributeDatabaseDrawEts/build.gradle b/Distributed/DistributeDatabaseDrawEts/build.gradle deleted file mode 100644 index 8091e0ece10575993ba570722aadd6788144f460..0000000000000000000000000000000000000000 --- a/Distributed/DistributeDatabaseDrawEts/build.gradle +++ /dev/null @@ -1,34 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -apply plugin: 'com.huawei.ohos.app' - -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - supportSystem "standard" -} - -buildscript { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } - dependencies { - classpath 'com.huawei.ohos:hap:3.0.3.4' - classpath 'com.huawei.ohos:decctest:1.2.6.0' - } -} - -allprojects { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } -} diff --git a/Distributed/DistributeDatabaseDrawEts/entry/build-profile.json5 b/Distributed/DistributeDatabaseDrawEts/entry/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..ae58d1d0a70c602c9cfe1909b00dfec899ba1944 --- /dev/null +++ b/Distributed/DistributeDatabaseDrawEts/entry/build-profile.json5 @@ -0,0 +1,13 @@ +{ + "apiType": 'faMode', + "buildOption": { + }, + "targets": [ + { + "name": "default", + }, + { + "name": "ohosTest", + } + ] +} \ No newline at end of file diff --git a/Distributed/DistributeDatabaseDrawEts/entry/build.gradle b/Distributed/DistributeDatabaseDrawEts/entry/build.gradle deleted file mode 100644 index 4879de33706b7f666cfdcfbc46a8e95cefa9f429..0000000000000000000000000000000000000000 --- a/Distributed/DistributeDatabaseDrawEts/entry/build.gradle +++ /dev/null @@ -1,32 +0,0 @@ -apply plugin: 'com.huawei.ohos.hap' -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - signingConfigs { - debug { - storeFile file('D:\\openHos\\openhos.p12') - storePassword '00000018EAE05FDE239C72555D7E3A75AAAE8D5C8473E899062886CC5B1C5806824D76E04A3FDCFE' - keyAlias = 'hw' - keyPassword '000000188A095D85008CC89636DE77E8A1622CF14921FF9894B254F7CD41BBF6A0C1E51A641EA3B6' - signAlg = 'SHA256withECDSA' - profile file('D:\\openHos\\openHos.p7b') - certpath file('D:\\openHos\\openHos.cer') - } - } - compileSdkVersion 7 - defaultConfig { - compatibleSdkVersion 7 - } - buildTypes { - release { - proguardOpt { - proguardEnabled false - rulesFiles 'proguard-rules.pro' - } - } - } -} - -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) - testImplementation 'junit:junit:4.13.1' -} diff --git a/Distributed/DistributeDatabaseDrawEts/entry/hvigorfile.js b/Distributed/DistributeDatabaseDrawEts/entry/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..bcec4c99653062cbf17702c40a2dd2a7b809b81a --- /dev/null +++ b/Distributed/DistributeDatabaseDrawEts/entry/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyHapTasks diff --git a/Distributed/DistributeDatabaseDrawEts/entry/package.json b/Distributed/DistributeDatabaseDrawEts/entry/package.json new file mode 100644 index 0000000000000000000000000000000000000000..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 --- /dev/null +++ b/Distributed/DistributeDatabaseDrawEts/entry/package.json @@ -0,0 +1,13 @@ +{ + "name": "entry", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "module" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} +} diff --git a/Distributed/DistributeDatabaseDrawEts/gradle/wrapper/gradle-wrapper.jar b/Distributed/DistributeDatabaseDrawEts/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index 490fda8577df6c95960ba7077c43220e5bb2c0d9..0000000000000000000000000000000000000000 Binary files a/Distributed/DistributeDatabaseDrawEts/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/Distributed/DistributeDatabaseDrawEts/gradle/wrapper/gradle-wrapper.properties b/Distributed/DistributeDatabaseDrawEts/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index f59159e865d4b59feb1b8c44b001f62fc5d58df4..0000000000000000000000000000000000000000 --- a/Distributed/DistributeDatabaseDrawEts/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://repo.huaweicloud.com/gradle/gradle-6.3-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/Distributed/DistributeDatabaseDrawEts/hvigorfile.js b/Distributed/DistributeDatabaseDrawEts/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..cff9f0dfcf8cb00cca34e7f50d61380cf5496868 --- /dev/null +++ b/Distributed/DistributeDatabaseDrawEts/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyAppTasks \ No newline at end of file diff --git a/Distributed/DistributeDatabaseDrawEts/package.json b/Distributed/DistributeDatabaseDrawEts/package.json new file mode 100644 index 0000000000000000000000000000000000000000..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca --- /dev/null +++ b/Distributed/DistributeDatabaseDrawEts/package.json @@ -0,0 +1,17 @@ +{ + "name": "myapplication", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "project" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": { + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" + } +} diff --git a/Distributed/DistributeDatabaseDrawEts/settings.gradle b/Distributed/DistributeDatabaseDrawEts/settings.gradle deleted file mode 100644 index 4773db73233a570c2d0c01a22e75321acfbf7a07..0000000000000000000000000000000000000000 --- a/Distributed/DistributeDatabaseDrawEts/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -include ':entry' diff --git a/Distributed/GameAuthOpenH/build-profile.json5 b/Distributed/GameAuthOpenH/build-profile.json5 index bded64428ea1c8145603c4145540dcbf66b91db4..3854f71fc436e7d67fb03828698562f4dc8a3abb 100644 --- a/Distributed/GameAuthOpenH/build-profile.json5 +++ b/Distributed/GameAuthOpenH/build-profile.json5 @@ -1,17 +1,3 @@ -/* - * Copyright (c) 2021 Huawei Device Co., Ltd. - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ { "app": { "signingConfigs": [], @@ -19,9 +5,10 @@ "compatibleSdkVersion": 8, "products": [ { - "name": "default" - }, - ], + "name": "default", + "signingConfig": "default", + } + ] }, "modules": [ { @@ -31,10 +18,10 @@ { "name": "default", "applyToProducts": [ - "default", - ], - }, - ], - }, - ], + "default" + ] + } + ] + } + ] } \ No newline at end of file diff --git a/Distributed/GameAuthOpenH/entry/build-profile.json5 b/Distributed/GameAuthOpenH/entry/build-profile.json5 index 62a5100a430b12691a4b79f8c05362c9d5d5f4a1..09fbaf41fa38c8543903a0e47561a25e6d983cba 100644 --- a/Distributed/GameAuthOpenH/entry/build-profile.json5 +++ b/Distributed/GameAuthOpenH/entry/build-profile.json5 @@ -1,17 +1,3 @@ -/* - * Copyright (c) 2021 Huawei Device Co., Ltd. - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ { "apiType": 'faMode', "buildOption": { @@ -19,9 +5,6 @@ "targets": [ { "name": "default", - }, - { - "name": "ohosTest", } ] } \ No newline at end of file diff --git a/Distributed/GameAuthOpenH/entry/hvigorfile.js b/Distributed/GameAuthOpenH/entry/hvigorfile.js index 10bf2171a235d29f7a9c074f18552981b8f7882f..bcec4c99653062cbf17702c40a2dd2a7b809b81a 100644 --- a/Distributed/GameAuthOpenH/entry/hvigorfile.js +++ b/Distributed/GameAuthOpenH/entry/hvigorfile.js @@ -1,16 +1,2 @@ -/* - * Copyright (c) 2021 Huawei Device Co., Ltd. - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ // Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. module.exports = require('@ohos/hvigor-ohos-plugin').legacyHapTasks diff --git a/Distributed/GameAuthOpenH/entry/package.json b/Distributed/GameAuthOpenH/entry/package.json index 1ffd85f3c9471f6b662708c65075b7504ec35ac8..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 100644 --- a/Distributed/GameAuthOpenH/entry/package.json +++ b/Distributed/GameAuthOpenH/entry/package.json @@ -6,6 +6,8 @@ "buildTool": "hvigor", "directoryLevel": "module" }, - "dependencies": { - } + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} } diff --git a/Distributed/GameAuthOpenH/hvigorfile.js b/Distributed/GameAuthOpenH/hvigorfile.js index ae70b6f5380f9933e1bceaea54787ce080715807..cff9f0dfcf8cb00cca34e7f50d61380cf5496868 100644 --- a/Distributed/GameAuthOpenH/hvigorfile.js +++ b/Distributed/GameAuthOpenH/hvigorfile.js @@ -1,16 +1,2 @@ -/* - * Copyright (c) 2021 Huawei Device Co., Ltd. - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ // Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. module.exports = require('@ohos/hvigor-ohos-plugin').legacyAppTasks \ No newline at end of file diff --git a/Distributed/GameAuthOpenH/package.json b/Distributed/GameAuthOpenH/package.json index db3ff850ab6c060f11a637cd38281ace088257a7..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca 100644 --- a/Distributed/GameAuthOpenH/package.json +++ b/Distributed/GameAuthOpenH/package.json @@ -1,13 +1,17 @@ { - "name": "gameauthopenh", + "name": "myapplication", "version": "1.0.0", "ohos": { "org": "huawei", "buildTool": "hvigor", "directoryLevel": "project" }, + "description": "example description", + "repository": {}, + "license": "ISC", "dependencies": { - "@ohos/hvigor": "1.0.4-rc", - "@ohos/hvigor-ohos-plugin": "1.0.4-rc" + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" } } diff --git a/Distributed/HandleGameApplication/GameEtsOpenHarmony/entry/package.json b/Distributed/HandleGameApplication/GameEtsOpenHarmony/entry/package.json index 1ffd85f3c9471f6b662708c65075b7504ec35ac8..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 100644 --- a/Distributed/HandleGameApplication/GameEtsOpenHarmony/entry/package.json +++ b/Distributed/HandleGameApplication/GameEtsOpenHarmony/entry/package.json @@ -6,6 +6,8 @@ "buildTool": "hvigor", "directoryLevel": "module" }, - "dependencies": { - } + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} } diff --git a/Distributed/HandleGameApplication/GameEtsOpenHarmony/entry/src/main/ets/MainAbility/pages/index.ets b/Distributed/HandleGameApplication/GameEtsOpenHarmony/entry/src/main/ets/MainAbility/pages/index.ets index dc2be525c2e163e2c7eb7770ab53468b1f1bc03e..061dbfc7b4bc3200372f220d4dcc672291784a0d 100644 --- a/Distributed/HandleGameApplication/GameEtsOpenHarmony/entry/src/main/ets/MainAbility/pages/index.ets +++ b/Distributed/HandleGameApplication/GameEtsOpenHarmony/entry/src/main/ets/MainAbility/pages/index.ets @@ -13,9 +13,9 @@ * limitations under the License. */ -import {GameElement} from '../model/GameElement.ets' +import {GameElement} from '../model/GameElement' import prompt from '@system.prompt'; -import RemoteDeviceModel from '../model/RemoteDeviceModel.ets'; +import RemoteDeviceModel from '../model/RemoteDeviceModel'; import featureAbility from '@ohos.ability.featureAbility'; import rpc from "@ohos.rpc"; import commonEvent from '@ohos.commonEvent'; diff --git a/Distributed/HandleGameApplication/GameEtsOpenHarmony/local.properties b/Distributed/HandleGameApplication/GameEtsOpenHarmony/local.properties index ac07a9aabbd025cb23365b8fbc9c39a4609ce2cc..60b25f53723be603bc33864892014f55127d3610 100644 --- a/Distributed/HandleGameApplication/GameEtsOpenHarmony/local.properties +++ b/Distributed/HandleGameApplication/GameEtsOpenHarmony/local.properties @@ -1,10 +1,10 @@ -## This file is automatically generated by DevEco Studio. +# This file is automatically generated by DevEco Studio. # Do not modify this file -- YOUR CHANGES WILL BE ERASED! # # This file should *NOT* be checked into Version Control Systems, # as it contains information specific to your local configuration. # # For customization when using a Version Control System, please read the header note. -sdk.dir=D:/HarmonySDK/SDK3.2 -nodejs.dir=D:/Program Files/Huawei/DevEco Studio 3.0.1.842/tools/nodejs -npm.dir=D:/Program Files/Huawei/DevEco Studio 3.0.1.842/tools/nodejs +sdk.dir=D:/Program Files/Huawei/OpenHarmonySDK +nodejs.dir=D:/Program Files/Huawei/DevEco Studio 3.0.0.900/tools/nodejs +npm.dir=D:/Program Files/Huawei/DevEco Studio 3.0.0.900/tools/nodejs \ No newline at end of file diff --git a/Distributed/HandleGameApplication/GameEtsOpenHarmony/package.json b/Distributed/HandleGameApplication/GameEtsOpenHarmony/package.json index 1e42e6499837cbb7916f1fbfd108270c2c1a5f5d..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca 100644 --- a/Distributed/HandleGameApplication/GameEtsOpenHarmony/package.json +++ b/Distributed/HandleGameApplication/GameEtsOpenHarmony/package.json @@ -1,14 +1,17 @@ { - "name": "gameetsopenharmony", - "version": "1.0.0", - "ohos": { - "org": "huawei", - "buildTool": "hvigor", - "directoryLevel": "project" - }, - "dependencies": { - "@ohos/hvigor-ohos-plugin": "1.0.4-rc", - "@ohos/hvigor": "1.0.4-rc" - }, - "devDependencies": {} + "name": "myapplication", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "project" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": { + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" + } } diff --git a/Distributed/HandleGameApplication/HandleEtsOpenHarmony/entry/package.json b/Distributed/HandleGameApplication/HandleEtsOpenHarmony/entry/package.json index 1ffd85f3c9471f6b662708c65075b7504ec35ac8..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 100644 --- a/Distributed/HandleGameApplication/HandleEtsOpenHarmony/entry/package.json +++ b/Distributed/HandleGameApplication/HandleEtsOpenHarmony/entry/package.json @@ -6,6 +6,8 @@ "buildTool": "hvigor", "directoryLevel": "module" }, - "dependencies": { - } + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} } diff --git a/Distributed/HandleGameApplication/HandleEtsOpenHarmony/local.properties b/Distributed/HandleGameApplication/HandleEtsOpenHarmony/local.properties index ac07a9aabbd025cb23365b8fbc9c39a4609ce2cc..60b25f53723be603bc33864892014f55127d3610 100644 --- a/Distributed/HandleGameApplication/HandleEtsOpenHarmony/local.properties +++ b/Distributed/HandleGameApplication/HandleEtsOpenHarmony/local.properties @@ -1,10 +1,10 @@ -## This file is automatically generated by DevEco Studio. +# This file is automatically generated by DevEco Studio. # Do not modify this file -- YOUR CHANGES WILL BE ERASED! # # This file should *NOT* be checked into Version Control Systems, # as it contains information specific to your local configuration. # # For customization when using a Version Control System, please read the header note. -sdk.dir=D:/HarmonySDK/SDK3.2 -nodejs.dir=D:/Program Files/Huawei/DevEco Studio 3.0.1.842/tools/nodejs -npm.dir=D:/Program Files/Huawei/DevEco Studio 3.0.1.842/tools/nodejs +sdk.dir=D:/Program Files/Huawei/OpenHarmonySDK +nodejs.dir=D:/Program Files/Huawei/DevEco Studio 3.0.0.900/tools/nodejs +npm.dir=D:/Program Files/Huawei/DevEco Studio 3.0.0.900/tools/nodejs \ No newline at end of file diff --git a/Distributed/HandleGameApplication/HandleEtsOpenHarmony/package.json b/Distributed/HandleGameApplication/HandleEtsOpenHarmony/package.json index fb291b7f6822b33825ce4d0305f483b5830b9737..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca 100644 --- a/Distributed/HandleGameApplication/HandleEtsOpenHarmony/package.json +++ b/Distributed/HandleGameApplication/HandleEtsOpenHarmony/package.json @@ -1,13 +1,17 @@ { - "name": "handleetsopenharmony", + "name": "myapplication", "version": "1.0.0", "ohos": { "org": "huawei", "buildTool": "hvigor", "directoryLevel": "project" }, + "description": "example description", + "repository": {}, + "license": "ISC", "dependencies": { - "@ohos/hvigor": "1.0.4-rc", - "@ohos/hvigor-ohos-plugin": "1.0.4-rc" + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" } } diff --git a/Distributed/HandleGameApplication/README.md b/Distributed/HandleGameApplication/README.md index 139991d0533f1a15e513c35e72578a878a228dfa..51ce428adccd9acfd45d48511e63d61da5cf0f8b 100644 --- a/Distributed/HandleGameApplication/README.md +++ b/Distributed/HandleGameApplication/README.md @@ -35,15 +35,9 @@ 3. 搭建开发环境。 1. 开始前请参考[工具准备](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-overview.md#%E5%B7%A5%E5%85%B7%E5%87%86%E5%A4%87),完成DevEco Studio的安装和开发环境配置。 - 2. 开发环境配置完成后,请参考[使用工程向导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E5%88%9B%E5%BB%BAets%E5%B7%A5%E7%A8%8B)创建工程(模板选择“Empty Ability”),选择JS或者eTS语言开发。 - 3. 工程创建完成后,选择使用[真机进行调测](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E4%BD%BF%E7%94%A8%E7%9C%9F%E6%9C%BA%E8%BF%90%E8%A1%8C%E5%BA%94%E7%94%A8)。 - - - [配置OpenHarmony应用签名信息](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/configuring-openharmony-app-signature.md) - - [hap包安装指导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/installing-openharmony-app.md) - - 工程示例: - - - + 2. 开发环境配置完成后,请参考[使用工程向导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E5%88%9B%E5%BB%BAets%E5%B7%A5%E7%A8%8B)创建工程(模板选择“Empty Ability”),选择JS或者eTS语言开发。 + 3. 工程创建完成后,选择使用[真机进行调测](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E4%BD%BF%E7%94%A8%E7%9C%9F%E6%9C%BA%E8%BF%90%E8%A1%8C%E5%BA%94%E7%94%A8)。 + # 分布式组网 本章节以系统自带的音乐播放器为例(具体以实际的应用为准),介绍如何完成两台设备的分布式组网。 diff --git a/Distributed/NewsDemo/README.md b/Distributed/NewsDemo/README.md index 30aae7a05085f11b3fe3476c7dace366491d617c..e4f208738ed590f6f6190874912dd27db8361652 100644 --- a/Distributed/NewsDemo/README.md +++ b/Distributed/NewsDemo/README.md @@ -29,17 +29,10 @@ 3. 搭建开发环境: - 1. 开始前请参考[下载与安装软件](https://developer.harmonyos.com/cn/docs/documentation/doc-guides/software_install-0000001053582415)、[配置开发环境](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/configuring-openharmony-sdk.md),完成DevEco Studio的安装和开发环境配置。 + 1. 开始前请参考[工具准备](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-overview.md#%E5%B7%A5%E5%85%B7%E5%87%86%E5%A4%87),完成DevEco Studio的安装和开发环境配置。 + 2. 开发环境配置完成后,请参考[使用工程向导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E5%88%9B%E5%BB%BAets%E5%B7%A5%E7%A8%8B)创建工程(模板选择“Empty Ability”),选择JS或者eTS语言开发。 + 3. 工程创建完成后,选择使用[真机进行调测](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/start-with-ets.md#%E4%BD%BF%E7%94%A8%E7%9C%9F%E6%9C%BA%E8%BF%90%E8%A1%8C%E5%BA%94%E7%94%A8)。 - 2. 开发环境配置完成后,请参考[使用工程工程向导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/use-wizard-to-create-project.md)创建工程,使用JS或者eTS语言开发、“Application”为例,模板选择“\[Standard\]Empty Ability”。 - - 3. 工程创建完成后,可参考下面章节进行代码编写,使用真机进行调测: - - - [配置OpenHarmony应用签名信息](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/configuring-openharmony-app-signature.md) - - [hap包安装指导](https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/quick-start/installing-openharmony-app.md) - - 工程示例: - - ![](screenshots/device/截图.png) # 分布式组网 完成本篇Codelab我们还需要完成开发板的分布式组网,本示例以**Hi3516DV300**开发板为例,参照以下步骤进行: diff --git a/Distributed/NewsDemo/build-profile.json5 b/Distributed/NewsDemo/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..3854f71fc436e7d67fb03828698562f4dc8a3abb --- /dev/null +++ b/Distributed/NewsDemo/build-profile.json5 @@ -0,0 +1,27 @@ +{ + "app": { + "signingConfigs": [], + "compileSdkVersion": 8, + "compatibleSdkVersion": 8, + "products": [ + { + "name": "default", + "signingConfig": "default", + } + ] + }, + "modules": [ + { + "name": "entry", + "srcPath": "./entry", + "targets": [ + { + "name": "default", + "applyToProducts": [ + "default" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Distributed/NewsDemo/build.gradle b/Distributed/NewsDemo/build.gradle deleted file mode 100644 index 100934a2cd9549dbe84b2048cf0bc72926b7406e..0000000000000000000000000000000000000000 --- a/Distributed/NewsDemo/build.gradle +++ /dev/null @@ -1,34 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -apply plugin: 'com.huawei.ohos.app' - -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - supportSystem "standard" -} - -buildscript { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } - dependencies { - classpath 'com.huawei.ohos:hap:3.0.3.4' - classpath 'com.huawei.ohos:decctest:1.2.6.0' - } -} - -allprojects { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } -} diff --git a/Distributed/NewsDemo/entry/build-profile.json5 b/Distributed/NewsDemo/entry/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..09fbaf41fa38c8543903a0e47561a25e6d983cba --- /dev/null +++ b/Distributed/NewsDemo/entry/build-profile.json5 @@ -0,0 +1,10 @@ +{ + "apiType": 'faMode', + "buildOption": { + }, + "targets": [ + { + "name": "default", + } + ] +} \ No newline at end of file diff --git a/Distributed/NewsDemo/entry/build.gradle b/Distributed/NewsDemo/entry/build.gradle deleted file mode 100644 index a87f60fc966c1b5426ffbb7a268c005d768687a1..0000000000000000000000000000000000000000 --- a/Distributed/NewsDemo/entry/build.gradle +++ /dev/null @@ -1,21 +0,0 @@ -apply plugin: 'com.huawei.ohos.hap' -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - defaultConfig { - compatibleSdkVersion 7 - } - buildTypes { - release { - proguardOpt { - proguardEnabled false - rulesFiles 'proguard-rules.pro' - } - } - } -} - -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) - testImplementation 'junit:junit:4.13' -} diff --git a/Distributed/NewsDemo/entry/hvigorfile.js b/Distributed/NewsDemo/entry/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..bcec4c99653062cbf17702c40a2dd2a7b809b81a --- /dev/null +++ b/Distributed/NewsDemo/entry/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyHapTasks diff --git a/Distributed/NewsDemo/entry/package.json b/Distributed/NewsDemo/entry/package.json index 0967ef424bce6791893e9a57bb952f80fd536e93..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 100644 --- a/Distributed/NewsDemo/entry/package.json +++ b/Distributed/NewsDemo/entry/package.json @@ -1 +1,13 @@ -{} +{ + "name": "entry", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "module" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} +} diff --git a/Distributed/NewsDemo/entry/src/main/js/MainAbility/pages/detail/detail.hml b/Distributed/NewsDemo/entry/src/main/js/MainAbility/pages/detail/detail.hml index 604bc6ac332c034af73366ffb689bc99a7ce56e8..c959619cce19a6ca0698d77945f5d6ce7a9d9812 100644 --- a/Distributed/NewsDemo/entry/src/main/js/MainAbility/pages/detail/detail.hml +++ b/Distributed/NewsDemo/entry/src/main/js/MainAbility/pages/detail/detail.hml @@ -34,11 +34,13 @@ limitations under the License. 选择设备 - {{ $item.deviceName }} - - - +
+ {{ $item.deviceName }} + + + +
diff --git a/Distributed/NewsDemo/hvigorfile.js b/Distributed/NewsDemo/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..cff9f0dfcf8cb00cca34e7f50d61380cf5496868 --- /dev/null +++ b/Distributed/NewsDemo/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyAppTasks \ No newline at end of file diff --git a/Distributed/NewsDemo/package.json b/Distributed/NewsDemo/package.json new file mode 100644 index 0000000000000000000000000000000000000000..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca --- /dev/null +++ b/Distributed/NewsDemo/package.json @@ -0,0 +1,17 @@ +{ + "name": "myapplication", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "project" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": { + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" + } +} diff --git a/Distributed/NewsDemo/settings.gradle b/Distributed/NewsDemo/settings.gradle deleted file mode 100644 index 4773db73233a570c2d0c01a22e75321acfbf7a07..0000000000000000000000000000000000000000 --- a/Distributed/NewsDemo/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -include ':entry' diff --git a/Distributed/OHMailETS/build-profile.json5 b/Distributed/OHMailETS/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..3854f71fc436e7d67fb03828698562f4dc8a3abb --- /dev/null +++ b/Distributed/OHMailETS/build-profile.json5 @@ -0,0 +1,27 @@ +{ + "app": { + "signingConfigs": [], + "compileSdkVersion": 8, + "compatibleSdkVersion": 8, + "products": [ + { + "name": "default", + "signingConfig": "default", + } + ] + }, + "modules": [ + { + "name": "entry", + "srcPath": "./entry", + "targets": [ + { + "name": "default", + "applyToProducts": [ + "default" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Distributed/OHMailETS/build.gradle b/Distributed/OHMailETS/build.gradle deleted file mode 100644 index fb7709e73d18d3d6b45dca89390911bf3613638f..0000000000000000000000000000000000000000 --- a/Distributed/OHMailETS/build.gradle +++ /dev/null @@ -1,34 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. -apply plugin: 'com.huawei.ohos.app' - -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - supportSystem "standard" -} - -buildscript { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } - dependencies { - classpath 'com.huawei.ohos:hap:3.0.5.2' - classpath 'com.huawei.ohos:decctest:1.2.7.2' - } -} - -allprojects { - repositories { - maven { - url 'https://repo.huaweicloud.com/repository/maven/' - } - maven { - url 'https://developer.huawei.com/repo/' - } - } -} diff --git a/Distributed/OHMailETS/entry/build-profile.json5 b/Distributed/OHMailETS/entry/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..ae58d1d0a70c602c9cfe1909b00dfec899ba1944 --- /dev/null +++ b/Distributed/OHMailETS/entry/build-profile.json5 @@ -0,0 +1,13 @@ +{ + "apiType": 'faMode', + "buildOption": { + }, + "targets": [ + { + "name": "default", + }, + { + "name": "ohosTest", + } + ] +} \ No newline at end of file diff --git a/Distributed/OHMailETS/entry/build.gradle b/Distributed/OHMailETS/entry/build.gradle deleted file mode 100644 index 1587dd1948941f3eaaf092ae6cae7969cb6895ff..0000000000000000000000000000000000000000 --- a/Distributed/OHMailETS/entry/build.gradle +++ /dev/null @@ -1,21 +0,0 @@ -apply plugin: 'com.huawei.ohos.hap' -//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510 -ohos { - compileSdkVersion 7 - defaultConfig { - compatibleSdkVersion 7 - } - buildTypes { - release { - proguardOpt { - proguardEnabled false - rulesFiles 'proguard-rules.pro' - } - } - } -} - -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) - testImplementation 'junit:junit:4.13.1' -} diff --git a/Distributed/OHMailETS/entry/hvigorfile.js b/Distributed/OHMailETS/entry/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..bcec4c99653062cbf17702c40a2dd2a7b809b81a --- /dev/null +++ b/Distributed/OHMailETS/entry/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyHapTasks diff --git a/Distributed/OHMailETS/entry/package.json b/Distributed/OHMailETS/entry/package.json new file mode 100644 index 0000000000000000000000000000000000000000..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 --- /dev/null +++ b/Distributed/OHMailETS/entry/package.json @@ -0,0 +1,13 @@ +{ + "name": "entry", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "module" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} +} diff --git a/Distributed/OHMailETS/entry/src/main/ets/MainAbility/pages/css.ets b/Distributed/OHMailETS/entry/src/main/ets/MainAbility/pages/css.ets index 01e06d66f474248004469a47302934bd8e72db06..61da8a35658b6d721237c2e26f6e592a4b7e1b17 100644 --- a/Distributed/OHMailETS/entry/src/main/ets/MainAbility/pages/css.ets +++ b/Distributed/OHMailETS/entry/src/main/ets/MainAbility/pages/css.ets @@ -1,5 +1,5 @@ -let TextAlign = { - white: '#FFFFFF' -} - -export default TextAlign \ No newline at end of file +//let TextAlign11 = { +// white: '#FFFFFF' +//} +// +//export default TextAlign11 \ No newline at end of file diff --git a/Distributed/OHMailETS/entry/src/main/ets/MainAbility/pages/index.ets b/Distributed/OHMailETS/entry/src/main/ets/MainAbility/pages/index.ets index fd70710805f5c0cb3d23466d26fcf9d5ea22bb4f..3579d41e5d983defdace89b86e6ca10eae335a53 100644 --- a/Distributed/OHMailETS/entry/src/main/ets/MainAbility/pages/index.ets +++ b/Distributed/OHMailETS/entry/src/main/ets/MainAbility/pages/index.ets @@ -17,8 +17,8 @@ import featureAbility from '@ohos.ability.featureAbility'; import prompt from '@system.prompt'; import rpc from "@ohos.rpc"; import commonEvent from '@ohos.commonEvent'; -import RemoteDeviceModel from '../../model/RemoteDeviceModel.ets'; -import TextAlign from './css.ets' +import RemoteDeviceModel from '../../model/RemoteDeviceModel'; +//import TextAlign from './css' var connectedAbility; @@ -205,7 +205,7 @@ struct CustomDialogExample { onStartRemoteAbility(item, this.dataList); this.controller.close(); }) - Radio({ value: item }) + Radio({ value: item ,group: 'select'}) .onChange(() => { onStartRemoteAbility(item, this.dataList); this.controller.close(); diff --git a/Distributed/OHMailETS/gradle/wrapper/gradle-wrapper.jar b/Distributed/OHMailETS/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/Distributed/OHMailETS/gradle/wrapper/gradle-wrapper.properties b/Distributed/OHMailETS/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index 63c817f17998697c0097fa6399106b99591c77b9..0000000000000000000000000000000000000000 --- a/Distributed/OHMailETS/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,5 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://repo.huaweicloud.com/gradle/gradle-7.3-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/Distributed/OHMailETS/hvigorfile.js b/Distributed/OHMailETS/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..cff9f0dfcf8cb00cca34e7f50d61380cf5496868 --- /dev/null +++ b/Distributed/OHMailETS/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyAppTasks \ No newline at end of file diff --git a/Distributed/OHMailETS/package.json b/Distributed/OHMailETS/package.json new file mode 100644 index 0000000000000000000000000000000000000000..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca --- /dev/null +++ b/Distributed/OHMailETS/package.json @@ -0,0 +1,17 @@ +{ + "name": "myapplication", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "project" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": { + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" + } +} diff --git a/Distributed/OHMailETS/settings.gradle b/Distributed/OHMailETS/settings.gradle deleted file mode 100644 index 4773db73233a570c2d0c01a22e75321acfbf7a07..0000000000000000000000000000000000000000 --- a/Distributed/OHMailETS/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -include ':entry' diff --git a/Distributed/OpenHarmonyPictureGame/build-profile.json5 b/Distributed/OpenHarmonyPictureGame/build-profile.json5 index 37d61270664378dd388153b1dade5547f6d5eadc..3854f71fc436e7d67fb03828698562f4dc8a3abb 100644 --- a/Distributed/OpenHarmonyPictureGame/build-profile.json5 +++ b/Distributed/OpenHarmonyPictureGame/build-profile.json5 @@ -1,16 +1,14 @@ { "app": { - "signingConfigs": [ - - ], + "signingConfigs": [], "compileSdkVersion": 8, "compatibleSdkVersion": 8, "products": [ { - "name": "default" - - }, - ], + "name": "default", + "signingConfig": "default", + } + ] }, "modules": [ { @@ -20,10 +18,10 @@ { "name": "default", "applyToProducts": [ - "default", - ], - }, - ], - }, - ], + "default" + ] + } + ] + } + ] } \ No newline at end of file diff --git a/Distributed/OpenHarmonyPictureGame/entry/src/main/ets/MainAbility/pages/index.ets b/Distributed/OpenHarmonyPictureGame/entry/src/main/ets/MainAbility/pages/index.ets index 11044822705066c7343cf700dd690df1c318b6c0..b93361148cd52a46362bcb00e8e17cd12461acbc 100644 --- a/Distributed/OpenHarmonyPictureGame/entry/src/main/ets/MainAbility/pages/index.ets +++ b/Distributed/OpenHarmonyPictureGame/entry/src/main/ets/MainAbility/pages/index.ets @@ -17,7 +17,7 @@ import featureAbility from '@ohos.ability.featureAbility'; import prompt from '@system.prompt'; import rpc from "@ohos.rpc"; import commonEvent from '@ohos.commonEvent'; -import RemoteDeviceModel from '../../model/RemoteDeviceModel.ets'; +import RemoteDeviceModel from '../../model/RemoteDeviceModel'; var connectedAbility; diff --git a/Distributed/OpenHarmonyPictureGame/package-lock.json b/Distributed/OpenHarmonyPictureGame/package-lock.json index 3b0e6c16c6e642bf8874089670690eaefa4a53cd..1e4d8caa16b141d8c29668de4d9017db123cbc85 100644 --- a/Distributed/OpenHarmonyPictureGame/package-lock.json +++ b/Distributed/OpenHarmonyPictureGame/package-lock.json @@ -1,15 +1,15 @@ { - "name": "openharmonypicturegame", + "name": "myapplication", "version": "1.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { "@ohos/hvigor": { - "version": "1.0.4-rc", - "resolved": "https://cmc.centralrepo.rnd.huawei.com/artifactory/api/npm/product_npm/@ohos/hvigor/-/@ohos/hvigor-1.0.4-rc.tgz", - "integrity": "sha512-Juho6LypSvB8/Y56mNQfodQbUotUeadsoK6nWAfqqJgifZoWGEI+S0wSfAuDkdkpyk1XY2PhSY9G50qN56XrIg==", + "version": "1.0.6", + "resolved": "https://repo.harmonyos.com/npm/@ohos/hvigor/-/@ohos/hvigor-1.0.6.tgz", + "integrity": "sha512-jjp7vpvUOMW1Nf7TdyhOtonwWHoSyBJLUiZTQqIx/GJV4UJyIqsiURUOqFwncQ4L7PDdeHuWly4uEelknYeWhg==", "requires": { - "@ohos/hvigor-log": "1.0.4-rc", + "@ohos/hvigor-base": "1.0.6", "interpret": "1.4.0", "liftoff": "4.0.0", "mute-stdout": "1.0.0", @@ -19,36 +19,25 @@ } }, "@ohos/hvigor-base": { - "version": "1.0.4-rc", - "resolved": "https://cmc.centralrepo.rnd.huawei.com/artifactory/api/npm/product_npm/@ohos/hvigor-base/-/@ohos/hvigor-base-1.0.4-rc.tgz", - "integrity": "sha512-ee48+xuuq87GDed4aN/pkM/M8Tj6gSbX+EY7HKKYILq1usW7Ch2vBw6Si7JTwLWKdTj/lXa/8RKZ7kfVrhZZHQ==", + "version": "1.0.6", + "resolved": "https://repo.harmonyos.com/npm/@ohos/hvigor-base/-/@ohos/hvigor-base-1.0.6.tgz", + "integrity": "sha512-cRDnWICTxmpNiFb9clIioqP5Oik1seLCICztXVhZqultrHuxwTheCRUZrHwlpyWdkSB2Al+FFBqmSwzIgZX4IQ==", "requires": { - "@ohos/hvigor-log": "1.0.4-rc", "json5": "2.2.0", + "log4js": "6.4.1", "undertaker": "1.2.1" } }, - "@ohos/hvigor-log": { - "version": "1.0.4-rc", - "resolved": "https://cmc.centralrepo.rnd.huawei.com/artifactory/api/npm/product_npm/@ohos/hvigor-log/-/@ohos/hvigor-log-1.0.4-rc.tgz", - "integrity": "sha512-rUtJdwSPyks+c/YtyMa+S9TgDpKWD3DqVLCPhWopEzouscXkPNlKXjrXeQ+ZhU348k7aZHqGcyU2TaQaBxNZvA==", - "requires": { - "log4js": "6.4.1" - } - }, "@ohos/hvigor-ohos-plugin": { - "version": "1.0.4-rc", - "resolved": "https://cmc.centralrepo.rnd.huawei.com/artifactory/api/npm/product_npm/@ohos/hvigor-ohos-plugin/-/@ohos/hvigor-ohos-plugin-1.0.4-rc.tgz", - "integrity": "sha512-+S4ak//JEhXhfHaFd8S0m5I+wzRTW0zLm3reyB2WGDow+IPMNyITQCi49cK1YC/QjYU75V+VeF6vHY/ArUretA==", - "requires": { - "@ohos/hvigor": "1.0.4-rc", - "@ohos/hvigor-base": "1.0.4-rc", - "@ohos/hvigor-log": "1.0.4-rc", - "@ohos/sdkmanager-common": "1.1.1", + "version": "1.0.6", + "resolved": "https://repo.harmonyos.com/npm/@ohos/hvigor-ohos-plugin/-/@ohos/hvigor-ohos-plugin-1.0.6.tgz", + "integrity": "sha512-MAAi8uJxMzODUoSSNfBr+fU4HQ20dfQtkje9I+X4asc7qY2kAplW/q9f5XS8IOvv8zhC8OcSgsAXOAJuLMstOQ==", + "requires": { + "@ohos/hvigor-base": "1.0.6", + "@ohos/sdkmanager-common": "1.1.3", "ajv": "8.10.0", "archiver": "5.3.0", "execa": "5.1.1", - "fast-xml-parser": "4.0.3", "fs-extra": "10.0.0", "glob": "7.2.0", "iconv-lite": "0.6.3", @@ -60,7 +49,7 @@ "dependencies": { "fs-extra": { "version": "10.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/fs-extra/-/fs-extra-10.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/fs-extra/-/fs-extra-10.0.0.tgz", "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", "requires": { "graceful-fs": "^4.2.0", @@ -70,19 +59,19 @@ }, "pretty-hrtime": { "version": "1.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=" } } }, "@ohos/sdkmanager-common": { - "version": "1.1.1", - "resolved": "https://cmc.centralrepo.rnd.huawei.com/artifactory/api/npm/product_npm/@ohos/sdkmanager-common/-/@ohos/sdkmanager-common-1.1.1.tgz", - "integrity": "sha512-3aCsAhTlBubmqvt7Ha4s62bK5knELd5ogX/Mq1DGkqJp6qXWmohugUngZRZtNB6C+ZsGYxaw6unUl0jgw1J5xA==" + "version": "1.1.3", + "resolved": "https://repo.harmonyos.com/npm/@ohos/sdkmanager-common/-/@ohos/sdkmanager-common-1.1.3.tgz", + "integrity": "sha512-d2uhVauDDJZIUvyyaWWoavG4N/jLyfF5IH5kEXKV6R8HNf3606H1zDQzA+UZtOfwwJFXhD9djRjnVFNB8xc7aw==" }, "ajv": { "version": "8.10.0", - "resolved": "http://mirrors.tools.huawei.com/npm/ajv/-/ajv-8.10.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/ajv/-/ajv-8.10.0.tgz", "integrity": "sha512-bzqAEZOjkrUMl2afH8dknrq5KEk2SrwdBROR+vH1EKVQTqaUbJVPdc/gEdggTMM0Se+s+Ja4ju4TlNcStKl2Hw==", "requires": { "fast-deep-equal": "^3.1.1", @@ -93,12 +82,12 @@ }, "ansi-regex": { "version": "2.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/ansi-regex/-/ansi-regex-2.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" }, "archiver": { "version": "5.3.0", - "resolved": "http://mirrors.tools.huawei.com/npm/archiver/-/archiver-5.3.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/archiver/-/archiver-5.3.0.tgz", "integrity": "sha512-iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg==", "requires": { "archiver-utils": "^2.1.0", @@ -112,7 +101,7 @@ }, "archiver-utils": { "version": "2.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/archiver-utils/-/archiver-utils-2.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/archiver-utils/-/archiver-utils-2.1.0.tgz", "integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==", "requires": { "glob": "^7.1.4", @@ -129,7 +118,7 @@ "dependencies": { "readable-stream": { "version": "2.3.7", - "resolved": "http://mirrors.tools.huawei.com/npm/readable-stream/-/readable-stream-2.3.7.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/readable-stream/-/readable-stream-2.3.7.tgz", "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "requires": { "core-util-is": "~1.0.0", @@ -145,7 +134,7 @@ }, "arr-filter": { "version": "1.1.2", - "resolved": "http://mirrors.tools.huawei.com/npm/arr-filter/-/arr-filter-1.1.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/arr-filter/-/arr-filter-1.1.2.tgz", "integrity": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=", "requires": { "make-iterator": "^1.0.0" @@ -153,12 +142,12 @@ }, "arr-flatten": { "version": "1.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/arr-flatten/-/arr-flatten-1.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/arr-flatten/-/arr-flatten-1.1.0.tgz", "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" }, "arr-map": { "version": "2.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/arr-map/-/arr-map-2.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/arr-map/-/arr-map-2.0.2.tgz", "integrity": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=", "requires": { "make-iterator": "^1.0.0" @@ -166,53 +155,39 @@ }, "array-each": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/array-each/-/array-each-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/array-each/-/array-each-1.0.1.tgz", "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=" }, "array-initial": { "version": "1.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/array-initial/-/array-initial-1.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/array-initial/-/array-initial-1.1.0.tgz", "integrity": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=", "requires": { "array-slice": "^1.0.0", "is-number": "^4.0.0" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" - } } }, "array-last": { "version": "1.3.0", - "resolved": "http://mirrors.tools.huawei.com/npm/array-last/-/array-last-1.3.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/array-last/-/array-last-1.3.0.tgz", "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", "requires": { "is-number": "^4.0.0" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" - } } }, "array-slice": { "version": "1.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/array-slice/-/array-slice-1.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/array-slice/-/array-slice-1.1.0.tgz", "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==" }, "async": { "version": "3.2.3", - "resolved": "http://mirrors.tools.huawei.com/npm/async/-/async-3.2.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/async/-/async-3.2.3.tgz", "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" }, "async-done": { "version": "1.3.2", - "resolved": "http://mirrors.tools.huawei.com/npm/async-done/-/async-done-1.3.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/async-done/-/async-done-1.3.2.tgz", "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", "requires": { "end-of-stream": "^1.1.0", @@ -223,7 +198,7 @@ }, "async-settle": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/async-settle/-/async-settle-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/async-settle/-/async-settle-1.0.0.tgz", "integrity": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=", "requires": { "async-done": "^1.2.2" @@ -231,7 +206,7 @@ }, "bach": { "version": "1.2.0", - "resolved": "http://mirrors.tools.huawei.com/npm/bach/-/bach-1.2.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/bach/-/bach-1.2.0.tgz", "integrity": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=", "requires": { "arr-filter": "^1.1.1", @@ -247,17 +222,17 @@ }, "balanced-match": { "version": "1.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/balanced-match/-/balanced-match-1.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "base64-js": { "version": "1.5.1", - "resolved": "http://mirrors.tools.huawei.com/npm/base64-js/-/base64-js-1.5.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/base64-js/-/base64-js-1.5.1.tgz", "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" }, "bl": { "version": "4.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/bl/-/bl-4.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/bl/-/bl-4.1.0.tgz", "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "requires": { "buffer": "^5.5.0", @@ -267,7 +242,7 @@ }, "brace-expansion": { "version": "1.1.11", - "resolved": "http://mirrors.tools.huawei.com/npm/brace-expansion/-/brace-expansion-1.1.11.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "requires": { "balanced-match": "^1.0.0", @@ -276,7 +251,7 @@ }, "braces": { "version": "3.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/braces/-/braces-3.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "requires": { "fill-range": "^7.0.1" @@ -284,7 +259,7 @@ }, "buffer": { "version": "5.7.1", - "resolved": "http://mirrors.tools.huawei.com/npm/buffer/-/buffer-5.7.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/buffer/-/buffer-5.7.1.tgz", "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "requires": { "base64-js": "^1.3.1", @@ -293,12 +268,12 @@ }, "buffer-crc32": { "version": "0.2.13", - "resolved": "http://mirrors.tools.huawei.com/npm/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/buffer-crc32/-/buffer-crc32-0.2.13.tgz", "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" }, "call-bind": { "version": "1.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/call-bind/-/call-bind-1.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "requires": { "function-bind": "^1.1.1", @@ -307,12 +282,12 @@ }, "camelcase": { "version": "3.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/camelcase/-/camelcase-3.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/camelcase/-/camelcase-3.0.0.tgz", "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" }, "cliui": { "version": "3.2.0", - "resolved": "http://mirrors.tools.huawei.com/npm/cliui/-/cliui-3.2.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/cliui/-/cliui-3.2.0.tgz", "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", "requires": { "string-width": "^1.0.1", @@ -322,12 +297,12 @@ }, "code-point-at": { "version": "1.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/code-point-at/-/code-point-at-1.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/code-point-at/-/code-point-at-1.1.0.tgz", "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" }, "collection-map": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/collection-map/-/collection-map-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/collection-map/-/collection-map-1.0.0.tgz", "integrity": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=", "requires": { "arr-map": "^2.0.2", @@ -337,7 +312,7 @@ }, "compress-commons": { "version": "4.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/compress-commons/-/compress-commons-4.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/compress-commons/-/compress-commons-4.1.1.tgz", "integrity": "sha512-QLdDLCKNV2dtoTorqgxngQCMA+gWXkM/Nwu7FpeBhk/RdkzimqC3jueb/FDmaZeXh+uby1jkBqE3xArsLBE5wQ==", "requires": { "buffer-crc32": "^0.2.13", @@ -348,17 +323,17 @@ }, "concat-map": { "version": "0.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/concat-map/-/concat-map-0.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "core-util-is": { "version": "1.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/core-util-is/-/core-util-is-1.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/core-util-is/-/core-util-is-1.0.3.tgz", "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" }, "crc-32": { "version": "1.2.1", - "resolved": "http://mirrors.tools.huawei.com/npm/crc-32/-/crc-32-1.2.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/crc-32/-/crc-32-1.2.1.tgz", "integrity": "sha512-Dn/xm/1vFFgs3nfrpEVScHoIslO9NZRITWGz/1E/St6u4xw99vfZzVkW0OSnzx2h9egej9xwMCEut6sqwokM/w==", "requires": { "exit-on-epipe": "~1.0.1", @@ -367,7 +342,7 @@ }, "crc32-stream": { "version": "4.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/crc32-stream/-/crc32-stream-4.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/crc32-stream/-/crc32-stream-4.0.2.tgz", "integrity": "sha512-DxFZ/Hk473b/muq1VJ///PMNLj0ZMnzye9thBpmjpJKCc5eMgB95aK8zCGrGfQ90cWo561Te6HK9D+j4KPdM6w==", "requires": { "crc-32": "^1.2.0", @@ -376,7 +351,7 @@ }, "cross-spawn": { "version": "7.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/cross-spawn/-/cross-spawn-7.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/cross-spawn/-/cross-spawn-7.0.3.tgz", "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "requires": { "path-key": "^3.1.0", @@ -386,7 +361,7 @@ "dependencies": { "which": { "version": "2.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/which/-/which-2.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "requires": { "isexe": "^2.0.0" @@ -396,7 +371,7 @@ }, "d": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/d/-/d-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/d/-/d-1.0.1.tgz", "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", "requires": { "es5-ext": "^0.10.50", @@ -404,31 +379,31 @@ } }, "date-format": { - "version": "4.0.4", - "resolved": "http://mirrors.tools.huawei.com/npm/date-format/-/date-format-4.0.4.tgz", - "integrity": "sha512-/jyf4rhB17ge328HJuJjAcmRtCsGd+NDeAtahRBTaK6vSPR6MO5HlrAit3Nn7dVjaa6sowW0WXt8yQtLyZQFRg==" + "version": "4.0.6", + "resolved": "https://repo.huaweicloud.com/repository/npm/date-format/-/date-format-4.0.6.tgz", + "integrity": "sha512-B9vvg5rHuQ8cbUXE/RMWMyX2YA5TecT3jKF5fLtGNlzPlU7zblSPmAm2OImDbWL+LDOQ6pUm+4LOFz+ywS41Zw==" }, "debug": { - "version": "4.3.3", - "resolved": "http://mirrors.tools.huawei.com/npm/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "version": "4.3.4", + "resolved": "https://repo.huaweicloud.com/repository/npm/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "requires": { "ms": "2.1.2" } }, "decamelize": { "version": "1.2.0", - "resolved": "http://mirrors.tools.huawei.com/npm/decamelize/-/decamelize-1.2.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/decamelize/-/decamelize-1.2.0.tgz", "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" }, "default-resolution": { "version": "2.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/default-resolution/-/default-resolution-2.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/default-resolution/-/default-resolution-2.0.0.tgz", "integrity": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=" }, "define-properties": { "version": "1.1.3", - "resolved": "http://mirrors.tools.huawei.com/npm/define-properties/-/define-properties-1.1.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/define-properties/-/define-properties-1.1.3.tgz", "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", "requires": { "object-keys": "^1.0.12" @@ -436,12 +411,12 @@ }, "detect-file": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/detect-file/-/detect-file-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/detect-file/-/detect-file-1.0.0.tgz", "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=" }, "end-of-stream": { "version": "1.4.4", - "resolved": "http://mirrors.tools.huawei.com/npm/end-of-stream/-/end-of-stream-1.4.4.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "requires": { "once": "^1.4.0" @@ -449,16 +424,16 @@ }, "error-ex": { "version": "1.3.2", - "resolved": "http://mirrors.tools.huawei.com/npm/error-ex/-/error-ex-1.3.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "requires": { "is-arrayish": "^0.2.1" } }, "es5-ext": { - "version": "0.10.58", - "resolved": "http://mirrors.tools.huawei.com/npm/es5-ext/-/es5-ext-0.10.58.tgz", - "integrity": "sha512-LHO+KBBaHGwjy32ibSaMY+ZzjpC4K4I5bPoijICMBL7gXEXfrEUrzssmNP+KigbQEp1dRUnGkry/vUnxOqptLQ==", + "version": "0.10.59", + "resolved": "https://repo.huaweicloud.com/repository/npm/es5-ext/-/es5-ext-0.10.59.tgz", + "integrity": "sha512-cOgyhW0tIJyQY1Kfw6Kr0viu9ZlUctVchRMZ7R0HiH3dxTSp5zJDLecwxUqPUrGKMsgBI1wd1FL+d9Jxfi4cLw==", "requires": { "es6-iterator": "^2.0.3", "es6-symbol": "^3.1.3", @@ -467,7 +442,7 @@ }, "es6-iterator": { "version": "2.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/es6-iterator/-/es6-iterator-2.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/es6-iterator/-/es6-iterator-2.0.3.tgz", "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", "requires": { "d": "1", @@ -477,7 +452,7 @@ }, "es6-symbol": { "version": "3.1.3", - "resolved": "http://mirrors.tools.huawei.com/npm/es6-symbol/-/es6-symbol-3.1.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/es6-symbol/-/es6-symbol-3.1.3.tgz", "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", "requires": { "d": "^1.0.1", @@ -486,7 +461,7 @@ }, "es6-weak-map": { "version": "2.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/es6-weak-map/-/es6-weak-map-2.0.3.tgz", "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", "requires": { "d": "1", @@ -497,7 +472,7 @@ }, "execa": { "version": "5.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/execa/-/execa-5.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "requires": { "cross-spawn": "^7.0.3", @@ -513,12 +488,12 @@ }, "exit-on-epipe": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz", "integrity": "sha512-h2z5mrROTxce56S+pnvAV890uu7ls7f1kEvVGJbw1OlFH3/mlJ5bkXu0KRyW94v37zzHPiUd55iLn3DA7TjWpw==" }, "expand-tilde": { "version": "2.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/expand-tilde/-/expand-tilde-2.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/expand-tilde/-/expand-tilde-2.0.2.tgz", "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", "requires": { "homedir-polyfill": "^1.0.1" @@ -526,7 +501,7 @@ }, "ext": { "version": "1.6.0", - "resolved": "http://mirrors.tools.huawei.com/npm/ext/-/ext-1.6.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/ext/-/ext-1.6.0.tgz", "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", "requires": { "type": "^2.5.0" @@ -534,32 +509,24 @@ "dependencies": { "type": { "version": "2.6.0", - "resolved": "http://mirrors.tools.huawei.com/npm/type/-/type-2.6.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/type/-/type-2.6.0.tgz", "integrity": "sha512-eiDBDOmkih5pMbo9OqsqPRGMljLodLcwd5XD5JbtNB0o89xZAwynY9EdCDsJU7LtcVCClu9DvM7/0Ep1hYX3EQ==" } } }, "extend": { "version": "3.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/extend/-/extend-3.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" }, "fast-deep-equal": { "version": "3.1.3", - "resolved": "http://mirrors.tools.huawei.com/npm/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, - "fast-xml-parser": { - "version": "4.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/fast-xml-parser/-/fast-xml-parser-4.0.3.tgz", - "integrity": "sha512-xhQbg3a/EYNHwK0cxIG1nZmVkHX/0tWihamn5pU4Mhd9KEVE2ga8ZJiqEUgB2sApElvAATOdMTLjgqIpvYDUkQ==", - "requires": { - "strnum": "^1.0.5" - } - }, "fill-range": { "version": "7.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/fill-range/-/fill-range-7.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "requires": { "to-regex-range": "^5.0.1" @@ -567,7 +534,7 @@ }, "find-up": { "version": "1.1.2", - "resolved": "http://mirrors.tools.huawei.com/npm/find-up/-/find-up-1.1.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/find-up/-/find-up-1.1.2.tgz", "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", "requires": { "path-exists": "^2.0.0", @@ -576,7 +543,7 @@ }, "findup-sync": { "version": "5.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/findup-sync/-/findup-sync-5.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/findup-sync/-/findup-sync-5.0.0.tgz", "integrity": "sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==", "requires": { "detect-file": "^1.0.0", @@ -587,7 +554,7 @@ }, "fined": { "version": "2.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/fined/-/fined-2.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/fined/-/fined-2.0.0.tgz", "integrity": "sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==", "requires": { "expand-tilde": "^2.0.2", @@ -599,22 +566,22 @@ }, "flagged-respawn": { "version": "2.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/flagged-respawn/-/flagged-respawn-2.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/flagged-respawn/-/flagged-respawn-2.0.0.tgz", "integrity": "sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==" }, "flatted": { "version": "3.2.5", - "resolved": "http://mirrors.tools.huawei.com/npm/flatted/-/flatted-3.2.5.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/flatted/-/flatted-3.2.5.tgz", "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==" }, "for-in": { "version": "1.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/for-in/-/for-in-1.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/for-in/-/for-in-1.0.2.tgz", "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" }, "for-own": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/for-own/-/for-own-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/for-own/-/for-own-1.0.0.tgz", "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", "requires": { "for-in": "^1.0.1" @@ -622,12 +589,12 @@ }, "fs-constants": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/fs-constants/-/fs-constants-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/fs-constants/-/fs-constants-1.0.0.tgz", "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" }, "fs-extra": { "version": "10.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/fs-extra/-/fs-extra-10.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/fs-extra/-/fs-extra-10.0.1.tgz", "integrity": "sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==", "requires": { "graceful-fs": "^4.2.0", @@ -637,22 +604,22 @@ }, "fs.realpath": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/fs.realpath/-/fs.realpath-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "function-bind": { "version": "1.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/function-bind/-/function-bind-1.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "get-caller-file": { "version": "1.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/get-caller-file/-/get-caller-file-1.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/get-caller-file/-/get-caller-file-1.0.3.tgz", "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" }, "get-intrinsic": { "version": "1.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.1.1.tgz", "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", "requires": { "function-bind": "^1.1.1", @@ -662,12 +629,12 @@ }, "get-stream": { "version": "6.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/get-stream/-/get-stream-6.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" }, "glob": { "version": "7.2.0", - "resolved": "http://mirrors.tools.huawei.com/npm/glob/-/glob-7.2.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/glob/-/glob-7.2.0.tgz", "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "requires": { "fs.realpath": "^1.0.0", @@ -680,7 +647,7 @@ }, "global-modules": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/global-modules/-/global-modules-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/global-modules/-/global-modules-1.0.0.tgz", "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", "requires": { "global-prefix": "^1.0.1", @@ -690,7 +657,7 @@ }, "global-prefix": { "version": "1.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/global-prefix/-/global-prefix-1.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/global-prefix/-/global-prefix-1.0.2.tgz", "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", "requires": { "expand-tilde": "^2.0.2", @@ -702,12 +669,12 @@ }, "graceful-fs": { "version": "4.2.9", - "resolved": "http://mirrors.tools.huawei.com/npm/graceful-fs/-/graceful-fs-4.2.9.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/graceful-fs/-/graceful-fs-4.2.9.tgz", "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==" }, "has": { "version": "1.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/has/-/has-1.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { "function-bind": "^1.1.1" @@ -715,12 +682,12 @@ }, "has-symbols": { "version": "1.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/has-symbols/-/has-symbols-1.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" }, "homedir-polyfill": { "version": "1.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", "requires": { "parse-passwd": "^1.0.0" @@ -728,17 +695,22 @@ }, "hosted-git-info": { "version": "2.8.9", - "resolved": "http://mirrors.tools.huawei.com/npm/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/hosted-git-info/-/hosted-git-info-2.8.9.tgz", "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" }, "human-signals": { "version": "2.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/human-signals/-/human-signals-2.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" }, + "hypium": { + "version": "1.0.0", + "resolved": "https://repo.huaweicloud.com/repository/npm/hypium/-/hypium-1.0.0.tgz", + "integrity": "sha512-nl+RQVv2AU/5FvFRhsXyWO5wh+2huhdqRZ3bszBWZzW+kpNI3AT4ydvVRYIfaQbYwV4UlX/rSc7BtFjLAezhow==" + }, "iconv-lite": { "version": "0.6.3", - "resolved": "http://mirrors.tools.huawei.com/npm/iconv-lite/-/iconv-lite-0.6.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "requires": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -746,12 +718,12 @@ }, "ieee754": { "version": "1.2.1", - "resolved": "http://mirrors.tools.huawei.com/npm/ieee754/-/ieee754-1.2.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" }, "inflight": { "version": "1.0.6", - "resolved": "http://mirrors.tools.huawei.com/npm/inflight/-/inflight-1.0.6.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "requires": { "once": "^1.3.0", @@ -760,27 +732,27 @@ }, "inherits": { "version": "2.0.4", - "resolved": "http://mirrors.tools.huawei.com/npm/inherits/-/inherits-2.0.4.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "ini": { "version": "1.3.8", - "resolved": "http://mirrors.tools.huawei.com/npm/ini/-/ini-1.3.8.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "interpret": { "version": "1.4.0", - "resolved": "http://mirrors.tools.huawei.com/npm/interpret/-/interpret-1.4.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/interpret/-/interpret-1.4.0.tgz", "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" }, "invert-kv": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/invert-kv/-/invert-kv-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/invert-kv/-/invert-kv-1.0.0.tgz", "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" }, "is-absolute": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/is-absolute/-/is-absolute-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-absolute/-/is-absolute-1.0.0.tgz", "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", "requires": { "is-relative": "^1.0.0", @@ -789,12 +761,12 @@ }, "is-arrayish": { "version": "0.2.1", - "resolved": "http://mirrors.tools.huawei.com/npm/is-arrayish/-/is-arrayish-0.2.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" }, "is-core-module": { "version": "2.8.1", - "resolved": "http://mirrors.tools.huawei.com/npm/is-core-module/-/is-core-module-2.8.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-core-module/-/is-core-module-2.8.1.tgz", "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", "requires": { "has": "^1.0.3" @@ -802,12 +774,12 @@ }, "is-extglob": { "version": "2.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/is-extglob/-/is-extglob-2.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" }, "is-fullwidth-code-point": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", "requires": { "number-is-nan": "^1.0.0" @@ -815,25 +787,25 @@ }, "is-glob": { "version": "4.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/is-glob/-/is-glob-4.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "requires": { "is-extglob": "^2.1.1" } }, "is-number": { - "version": "7.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + "version": "4.0.0", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" }, "is-plain-object": { "version": "5.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/is-plain-object/-/is-plain-object-5.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-5.0.0.tgz", "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" }, "is-relative": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/is-relative/-/is-relative-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-relative/-/is-relative-1.0.0.tgz", "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", "requires": { "is-unc-path": "^1.0.0" @@ -841,12 +813,12 @@ }, "is-stream": { "version": "2.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/is-stream/-/is-stream-2.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" }, "is-unc-path": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/is-unc-path/-/is-unc-path-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-unc-path/-/is-unc-path-1.0.0.tgz", "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", "requires": { "unc-path-regex": "^0.1.2" @@ -854,37 +826,37 @@ }, "is-utf8": { "version": "0.2.1", - "resolved": "http://mirrors.tools.huawei.com/npm/is-utf8/-/is-utf8-0.2.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-utf8/-/is-utf8-0.2.1.tgz", "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" }, "is-windows": { "version": "1.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/is-windows/-/is-windows-1.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-windows/-/is-windows-1.0.2.tgz", "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" }, "isarray": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/isarray/-/isarray-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "isexe": { "version": "2.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/isexe/-/isexe-2.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" }, "isobject": { "version": "3.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/isobject/-/isobject-3.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/isobject/-/isobject-3.0.1.tgz", "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" }, "json-schema-traverse": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "json5": { "version": "2.2.0", - "resolved": "http://mirrors.tools.huawei.com/npm/json5/-/json5-2.2.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/json5/-/json5-2.2.0.tgz", "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", "requires": { "minimist": "^1.2.5" @@ -892,7 +864,7 @@ }, "jsonfile": { "version": "6.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/jsonfile/-/jsonfile-6.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "requires": { "graceful-fs": "^4.1.6", @@ -901,12 +873,12 @@ }, "kind-of": { "version": "6.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/kind-of/-/kind-of-6.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" }, "last-run": { "version": "1.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/last-run/-/last-run-1.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/last-run/-/last-run-1.1.1.tgz", "integrity": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=", "requires": { "default-resolution": "^2.0.0", @@ -915,7 +887,7 @@ }, "lazystream": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/lazystream/-/lazystream-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/lazystream/-/lazystream-1.0.1.tgz", "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", "requires": { "readable-stream": "^2.0.5" @@ -923,7 +895,7 @@ "dependencies": { "readable-stream": { "version": "2.3.7", - "resolved": "http://mirrors.tools.huawei.com/npm/readable-stream/-/readable-stream-2.3.7.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/readable-stream/-/readable-stream-2.3.7.tgz", "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "requires": { "core-util-is": "~1.0.0", @@ -939,7 +911,7 @@ }, "lcid": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/lcid/-/lcid-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/lcid/-/lcid-1.0.0.tgz", "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", "requires": { "invert-kv": "^1.0.0" @@ -947,7 +919,7 @@ }, "liftoff": { "version": "4.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/liftoff/-/liftoff-4.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/liftoff/-/liftoff-4.0.0.tgz", "integrity": "sha512-rMGwYF8q7g2XhG2ulBmmJgWv25qBsqRbDn5gH0+wnuyeFt7QBJlHJmtg5qEdn4pN6WVAUMgXnIxytMFRX9c1aA==", "requires": { "extend": "^3.0.2", @@ -962,7 +934,7 @@ }, "load-json-file": { "version": "1.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/load-json-file/-/load-json-file-1.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/load-json-file/-/load-json-file-1.1.0.tgz", "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", "requires": { "graceful-fs": "^4.1.2", @@ -974,37 +946,37 @@ }, "lodash": { "version": "4.17.21", - "resolved": "http://mirrors.tools.huawei.com/npm/lodash/-/lodash-4.17.21.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "lodash.defaults": { "version": "4.2.0", - "resolved": "http://mirrors.tools.huawei.com/npm/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/lodash.defaults/-/lodash.defaults-4.2.0.tgz", "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=" }, "lodash.difference": { "version": "4.5.0", - "resolved": "http://mirrors.tools.huawei.com/npm/lodash.difference/-/lodash.difference-4.5.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/lodash.difference/-/lodash.difference-4.5.0.tgz", "integrity": "sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw=" }, "lodash.flatten": { "version": "4.4.0", - "resolved": "http://mirrors.tools.huawei.com/npm/lodash.flatten/-/lodash.flatten-4.4.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/lodash.flatten/-/lodash.flatten-4.4.0.tgz", "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" }, "lodash.isplainobject": { "version": "4.0.6", - "resolved": "http://mirrors.tools.huawei.com/npm/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" }, "lodash.union": { "version": "4.6.0", - "resolved": "http://mirrors.tools.huawei.com/npm/lodash.union/-/lodash.union-4.6.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/lodash.union/-/lodash.union-4.6.0.tgz", "integrity": "sha1-SLtQiECfFvGCFmZkHETdGqrjzYg=" }, "log4js": { "version": "6.4.1", - "resolved": "http://mirrors.tools.huawei.com/npm/log4js/-/log4js-6.4.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/log4js/-/log4js-6.4.1.tgz", "integrity": "sha512-iUiYnXqAmNKiIZ1XSAitQ4TmNs8CdZYTAWINARF3LjnsLN8tY5m0vRwd6uuWj/yNY0YHxeZodnbmxKFUOM2rMg==", "requires": { "date-format": "^4.0.3", @@ -1016,7 +988,7 @@ }, "make-iterator": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/make-iterator/-/make-iterator-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/make-iterator/-/make-iterator-1.0.1.tgz", "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", "requires": { "kind-of": "^6.0.2" @@ -1024,59 +996,59 @@ }, "map-cache": { "version": "0.2.2", - "resolved": "http://mirrors.tools.huawei.com/npm/map-cache/-/map-cache-0.2.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/map-cache/-/map-cache-0.2.2.tgz", "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" }, "merge-stream": { "version": "2.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/merge-stream/-/merge-stream-2.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" }, "micromatch": { - "version": "4.0.4", - "resolved": "http://mirrors.tools.huawei.com/npm/micromatch/-/micromatch-4.0.4.tgz", - "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "version": "4.0.5", + "resolved": "https://repo.huaweicloud.com/repository/npm/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "requires": { - "braces": "^3.0.1", - "picomatch": "^2.2.3" + "braces": "^3.0.2", + "picomatch": "^2.3.1" } }, "mimic-fn": { "version": "2.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/mimic-fn/-/mimic-fn-2.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" }, "minimatch": { "version": "3.1.2", - "resolved": "http://mirrors.tools.huawei.com/npm/minimatch/-/minimatch-3.1.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { - "version": "1.2.5", - "resolved": "http://mirrors.tools.huawei.com/npm/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "version": "1.2.6", + "resolved": "https://repo.huaweicloud.com/repository/npm/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, "ms": { "version": "2.1.2", - "resolved": "http://mirrors.tools.huawei.com/npm/ms/-/ms-2.1.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "mute-stdout": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/mute-stdout/-/mute-stdout-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/mute-stdout/-/mute-stdout-1.0.0.tgz", "integrity": "sha1-WzLqB+tDyd7WEwQ0z5JvRrKn/U0=" }, "next-tick": { "version": "1.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/next-tick/-/next-tick-1.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, "normalize-package-data": { "version": "2.5.0", - "resolved": "http://mirrors.tools.huawei.com/npm/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "requires": { "hosted-git-info": "^2.1.4", @@ -1087,12 +1059,12 @@ }, "normalize-path": { "version": "3.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/normalize-path/-/normalize-path-3.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" }, "now-and-later": { "version": "2.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/now-and-later/-/now-and-later-2.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/now-and-later/-/now-and-later-2.0.1.tgz", "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", "requires": { "once": "^1.3.2" @@ -1100,7 +1072,7 @@ }, "npm-run-path": { "version": "4.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/npm-run-path/-/npm-run-path-4.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "requires": { "path-key": "^3.0.0" @@ -1108,17 +1080,17 @@ }, "number-is-nan": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/number-is-nan/-/number-is-nan-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/number-is-nan/-/number-is-nan-1.0.1.tgz", "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" }, "object-keys": { "version": "1.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/object-keys/-/object-keys-1.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, "object.assign": { "version": "4.1.2", - "resolved": "http://mirrors.tools.huawei.com/npm/object.assign/-/object.assign-4.1.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/object.assign/-/object.assign-4.1.2.tgz", "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", "requires": { "call-bind": "^1.0.0", @@ -1129,7 +1101,7 @@ }, "object.defaults": { "version": "1.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/object.defaults/-/object.defaults-1.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/object.defaults/-/object.defaults-1.1.0.tgz", "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", "requires": { "array-each": "^1.0.1", @@ -1140,7 +1112,7 @@ }, "object.map": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/object.map/-/object.map-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/object.map/-/object.map-1.0.1.tgz", "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", "requires": { "for-own": "^1.0.0", @@ -1149,7 +1121,7 @@ }, "object.pick": { "version": "1.3.0", - "resolved": "http://mirrors.tools.huawei.com/npm/object.pick/-/object.pick-1.3.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/object.pick/-/object.pick-1.3.0.tgz", "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", "requires": { "isobject": "^3.0.1" @@ -1157,7 +1129,7 @@ }, "object.reduce": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/object.reduce/-/object.reduce-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/object.reduce/-/object.reduce-1.0.1.tgz", "integrity": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=", "requires": { "for-own": "^1.0.0", @@ -1166,7 +1138,7 @@ }, "once": { "version": "1.4.0", - "resolved": "http://mirrors.tools.huawei.com/npm/once/-/once-1.4.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "requires": { "wrappy": "1" @@ -1174,7 +1146,7 @@ }, "onetime": { "version": "5.1.2", - "resolved": "http://mirrors.tools.huawei.com/npm/onetime/-/onetime-5.1.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "requires": { "mimic-fn": "^2.1.0" @@ -1182,7 +1154,7 @@ }, "os-locale": { "version": "1.4.0", - "resolved": "http://mirrors.tools.huawei.com/npm/os-locale/-/os-locale-1.4.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/os-locale/-/os-locale-1.4.0.tgz", "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", "requires": { "lcid": "^1.0.0" @@ -1190,7 +1162,7 @@ }, "parse-filepath": { "version": "1.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/parse-filepath/-/parse-filepath-1.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/parse-filepath/-/parse-filepath-1.0.2.tgz", "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", "requires": { "is-absolute": "^1.0.0", @@ -1200,7 +1172,7 @@ }, "parse-json": { "version": "2.2.0", - "resolved": "http://mirrors.tools.huawei.com/npm/parse-json/-/parse-json-2.2.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/parse-json/-/parse-json-2.2.0.tgz", "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", "requires": { "error-ex": "^1.2.0" @@ -1208,12 +1180,12 @@ }, "parse-passwd": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/parse-passwd/-/parse-passwd-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/parse-passwd/-/parse-passwd-1.0.0.tgz", "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" }, "path-exists": { "version": "2.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/path-exists/-/path-exists-2.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/path-exists/-/path-exists-2.1.0.tgz", "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", "requires": { "pinkie-promise": "^2.0.0" @@ -1221,22 +1193,22 @@ }, "path-is-absolute": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, "path-key": { "version": "3.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/path-key/-/path-key-3.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" }, "path-parse": { "version": "1.0.7", - "resolved": "http://mirrors.tools.huawei.com/npm/path-parse/-/path-parse-1.0.7.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "path-root": { "version": "0.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/path-root/-/path-root-0.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/path-root/-/path-root-0.1.1.tgz", "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", "requires": { "path-root-regex": "^0.1.0" @@ -1244,12 +1216,12 @@ }, "path-root-regex": { "version": "0.1.2", - "resolved": "http://mirrors.tools.huawei.com/npm/path-root-regex/-/path-root-regex-0.1.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/path-root-regex/-/path-root-regex-0.1.2.tgz", "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=" }, "path-type": { "version": "1.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/path-type/-/path-type-1.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/path-type/-/path-type-1.1.0.tgz", "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", "requires": { "graceful-fs": "^4.1.2", @@ -1259,22 +1231,22 @@ }, "picomatch": { "version": "2.3.1", - "resolved": "http://mirrors.tools.huawei.com/npm/picomatch/-/picomatch-2.3.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" }, "pify": { "version": "2.3.0", - "resolved": "http://mirrors.tools.huawei.com/npm/pify/-/pify-2.3.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/pify/-/pify-2.3.0.tgz", "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" }, "pinkie": { "version": "2.0.4", - "resolved": "http://mirrors.tools.huawei.com/npm/pinkie/-/pinkie-2.0.4.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/pinkie/-/pinkie-2.0.4.tgz", "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" }, "pinkie-promise": { "version": "2.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/pinkie-promise/-/pinkie-promise-2.0.1.tgz", "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", "requires": { "pinkie": "^2.0.0" @@ -1282,27 +1254,27 @@ }, "pretty-hrtime": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/pretty-hrtime/-/pretty-hrtime-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/pretty-hrtime/-/pretty-hrtime-1.0.0.tgz", "integrity": "sha1-9ualItPmBwRSK/Db5oVu0g515Nw=" }, "printj": { "version": "1.3.1", - "resolved": "http://mirrors.tools.huawei.com/npm/printj/-/printj-1.3.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/printj/-/printj-1.3.1.tgz", "integrity": "sha512-GA3TdL8szPK4AQ2YnOe/b+Y1jUFwmmGMMK/qbY7VcE3Z7FU8JstbKiKRzO6CIiAKPhTO8m01NoQ0V5f3jc4OGg==" }, "process-nextick-args": { "version": "2.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "punycode": { "version": "2.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/punycode/-/punycode-2.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" }, "read-pkg": { "version": "1.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/read-pkg/-/read-pkg-1.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/read-pkg/-/read-pkg-1.1.0.tgz", "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", "requires": { "load-json-file": "^1.0.0", @@ -1312,7 +1284,7 @@ }, "read-pkg-up": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/read-pkg-up/-/read-pkg-up-1.0.1.tgz", "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", "requires": { "find-up": "^1.0.0", @@ -1321,7 +1293,7 @@ }, "readable-stream": { "version": "3.6.0", - "resolved": "http://mirrors.tools.huawei.com/npm/readable-stream/-/readable-stream-3.6.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/readable-stream/-/readable-stream-3.6.0.tgz", "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "requires": { "inherits": "^2.0.3", @@ -1331,7 +1303,7 @@ }, "readdir-glob": { "version": "1.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/readdir-glob/-/readdir-glob-1.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/readdir-glob/-/readdir-glob-1.1.1.tgz", "integrity": "sha512-91/k1EzZwDx6HbERR+zucygRFfiPl2zkIYZtv3Jjr6Mn7SkKcVct8aVO+sSRiGMc6fLf72du3d92/uY63YPdEA==", "requires": { "minimatch": "^3.0.4" @@ -1339,7 +1311,7 @@ }, "rechoir": { "version": "0.8.0", - "resolved": "http://mirrors.tools.huawei.com/npm/rechoir/-/rechoir-0.8.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/rechoir/-/rechoir-0.8.0.tgz", "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", "requires": { "resolve": "^1.20.0" @@ -1347,22 +1319,22 @@ }, "require-directory": { "version": "2.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/require-directory/-/require-directory-2.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" }, "require-from-string": { "version": "2.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/require-from-string/-/require-from-string-2.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" }, "require-main-filename": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/require-main-filename/-/require-main-filename-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/require-main-filename/-/require-main-filename-1.0.1.tgz", "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" }, "resolve": { "version": "1.22.0", - "resolved": "http://mirrors.tools.huawei.com/npm/resolve/-/resolve-1.22.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/resolve/-/resolve-1.22.0.tgz", "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", "requires": { "is-core-module": "^2.8.1", @@ -1372,7 +1344,7 @@ }, "resolve-dir": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/resolve-dir/-/resolve-dir-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/resolve-dir/-/resolve-dir-1.0.1.tgz", "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", "requires": { "expand-tilde": "^2.0.0", @@ -1381,7 +1353,7 @@ }, "resolve-package-path": { "version": "4.0.3", - "resolved": "http://mirrors.tools.huawei.com/npm/resolve-package-path/-/resolve-package-path-4.0.3.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/resolve-package-path/-/resolve-package-path-4.0.3.tgz", "integrity": "sha512-SRpNAPW4kewOaNUt8VPqhJ0UMxawMwzJD8V7m1cJfdSTK9ieZwS6K7Dabsm4bmLFM96Z5Y/UznrpG5kt1im8yA==", "requires": { "path-root": "^0.1.1" @@ -1389,32 +1361,32 @@ }, "rfdc": { "version": "1.3.0", - "resolved": "http://mirrors.tools.huawei.com/npm/rfdc/-/rfdc-1.3.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/rfdc/-/rfdc-1.3.0.tgz", "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" }, "safe-buffer": { "version": "5.1.2", - "resolved": "http://mirrors.tools.huawei.com/npm/safe-buffer/-/safe-buffer-5.1.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, "safer-buffer": { "version": "2.1.2", - "resolved": "http://mirrors.tools.huawei.com/npm/safer-buffer/-/safer-buffer-2.1.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "semver": { "version": "5.7.1", - "resolved": "http://mirrors.tools.huawei.com/npm/semver/-/semver-5.7.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" }, "set-blocking": { "version": "2.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/set-blocking/-/set-blocking-2.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/set-blocking/-/set-blocking-2.0.0.tgz", "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" }, "shebang-command": { "version": "2.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/shebang-command/-/shebang-command-2.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "requires": { "shebang-regex": "^3.0.0" @@ -1422,17 +1394,17 @@ }, "shebang-regex": { "version": "3.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/shebang-regex/-/shebang-regex-3.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" }, "signal-exit": { "version": "3.0.7", - "resolved": "http://mirrors.tools.huawei.com/npm/signal-exit/-/signal-exit-3.0.7.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, "spdx-correct": { "version": "3.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/spdx-correct/-/spdx-correct-3.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/spdx-correct/-/spdx-correct-3.1.1.tgz", "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "requires": { "spdx-expression-parse": "^3.0.0", @@ -1441,12 +1413,12 @@ }, "spdx-exceptions": { "version": "2.3.0", - "resolved": "http://mirrors.tools.huawei.com/npm/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" }, "spdx-expression-parse": { "version": "3.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "requires": { "spdx-exceptions": "^2.1.0", @@ -1455,27 +1427,27 @@ }, "spdx-license-ids": { "version": "3.0.11", - "resolved": "http://mirrors.tools.huawei.com/npm/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==" }, "stream-exhaust": { "version": "1.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/stream-exhaust/-/stream-exhaust-1.0.2.tgz", "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==" }, "streamroller": { - "version": "3.0.4", - "resolved": "http://mirrors.tools.huawei.com/npm/streamroller/-/streamroller-3.0.4.tgz", - "integrity": "sha512-GI9NzeD+D88UFuIlJkKNDH/IsuR+qIN7Qh8EsmhoRZr9bQoehTraRgwtLUkZbpcAw+hLPfHOypmppz8YyGK68w==", + "version": "3.0.6", + "resolved": "https://repo.huaweicloud.com/repository/npm/streamroller/-/streamroller-3.0.6.tgz", + "integrity": "sha512-Qz32plKq/MZywYyhEatxyYc8vs994Gz0Hu2MSYXXLD233UyPeIeRBZARIIGwFer4Mdb8r3Y2UqKkgyDghM6QCg==", "requires": { - "date-format": "^4.0.4", - "debug": "^4.3.3", + "date-format": "^4.0.6", + "debug": "^4.3.4", "fs-extra": "^10.0.1" } }, "string-width": { "version": "1.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/string-width/-/string-width-1.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/string-width/-/string-width-1.0.2.tgz", "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "requires": { "code-point-at": "^1.0.0", @@ -1485,7 +1457,7 @@ }, "string_decoder": { "version": "1.1.1", - "resolved": "http://mirrors.tools.huawei.com/npm/string_decoder/-/string_decoder-1.1.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "requires": { "safe-buffer": "~5.1.0" @@ -1493,7 +1465,7 @@ }, "strip-ansi": { "version": "3.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/strip-ansi/-/strip-ansi-3.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "requires": { "ansi-regex": "^2.0.0" @@ -1501,7 +1473,7 @@ }, "strip-bom": { "version": "2.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/strip-bom/-/strip-bom-2.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/strip-bom/-/strip-bom-2.0.0.tgz", "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", "requires": { "is-utf8": "^0.2.0" @@ -1509,22 +1481,17 @@ }, "strip-final-newline": { "version": "2.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" }, - "strnum": { - "version": "1.0.5", - "resolved": "http://mirrors.tools.huawei.com/npm/strnum/-/strnum-1.0.5.tgz", - "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" - }, "supports-preserve-symlinks-flag": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" }, "tar-stream": { "version": "2.2.0", - "resolved": "http://mirrors.tools.huawei.com/npm/tar-stream/-/tar-stream-2.2.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/tar-stream/-/tar-stream-2.2.0.tgz", "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "requires": { "bl": "^4.0.3", @@ -1536,25 +1503,32 @@ }, "to-regex-range": { "version": "5.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/to-regex-range/-/to-regex-range-5.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "requires": { "is-number": "^7.0.0" + }, + "dependencies": { + "is-number": { + "version": "7.0.0", + "resolved": "https://repo.huaweicloud.com/repository/npm/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } } }, "type": { "version": "1.2.0", - "resolved": "http://mirrors.tools.huawei.com/npm/type/-/type-1.2.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/type/-/type-1.2.0.tgz", "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" }, "unc-path-regex": { "version": "0.1.2", - "resolved": "http://mirrors.tools.huawei.com/npm/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/unc-path-regex/-/unc-path-regex-0.1.2.tgz", "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" }, "undertaker": { "version": "1.2.1", - "resolved": "http://mirrors.tools.huawei.com/npm/undertaker/-/undertaker-1.2.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/undertaker/-/undertaker-1.2.1.tgz", "integrity": "sha512-71WxIzDkgYk9ZS+spIB8iZXchFhAdEo2YU8xYqBYJ39DIUIqziK78ftm26eecoIY49X0J2MLhG4hr18Yp6/CMA==", "requires": { "arr-flatten": "^1.0.1", @@ -1570,17 +1544,17 @@ }, "undertaker-registry": { "version": "1.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/undertaker-registry/-/undertaker-registry-1.0.1.tgz", "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=" }, "universalify": { "version": "2.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/universalify/-/universalify-2.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/universalify/-/universalify-2.0.0.tgz", "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" }, "uri-js": { "version": "4.4.1", - "resolved": "http://mirrors.tools.huawei.com/npm/uri-js/-/uri-js-4.4.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "requires": { "punycode": "^2.1.0" @@ -1588,12 +1562,12 @@ }, "util-deprecate": { "version": "1.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/util-deprecate/-/util-deprecate-1.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, "v8flags": { "version": "3.2.0", - "resolved": "http://mirrors.tools.huawei.com/npm/v8flags/-/v8flags-3.2.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/v8flags/-/v8flags-3.2.0.tgz", "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", "requires": { "homedir-polyfill": "^1.0.1" @@ -1601,7 +1575,7 @@ }, "validate-npm-package-license": { "version": "3.0.4", - "resolved": "http://mirrors.tools.huawei.com/npm/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "requires": { "spdx-correct": "^3.0.0", @@ -1610,7 +1584,7 @@ }, "which": { "version": "1.3.1", - "resolved": "http://mirrors.tools.huawei.com/npm/which/-/which-1.3.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "requires": { "isexe": "^2.0.0" @@ -1618,12 +1592,12 @@ }, "which-module": { "version": "1.0.0", - "resolved": "http://mirrors.tools.huawei.com/npm/which-module/-/which-module-1.0.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/which-module/-/which-module-1.0.0.tgz", "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" }, "wrap-ansi": { "version": "2.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/wrap-ansi/-/wrap-ansi-2.1.0.tgz", "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", "requires": { "string-width": "^1.0.1", @@ -1632,17 +1606,17 @@ }, "wrappy": { "version": "1.0.2", - "resolved": "http://mirrors.tools.huawei.com/npm/wrappy/-/wrappy-1.0.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "y18n": { "version": "3.2.2", - "resolved": "http://mirrors.tools.huawei.com/npm/y18n/-/y18n-3.2.2.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/y18n/-/y18n-3.2.2.tgz", "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==" }, "yargs": { "version": "7.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/yargs/-/yargs-7.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/yargs/-/yargs-7.1.0.tgz", "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", "requires": { "camelcase": "^3.0.0", @@ -1662,7 +1636,7 @@ }, "yargs-parser": { "version": "5.0.1", - "resolved": "http://mirrors.tools.huawei.com/npm/yargs-parser/-/yargs-parser-5.0.1.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/yargs-parser/-/yargs-parser-5.0.1.tgz", "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", "requires": { "camelcase": "^3.0.0", @@ -1671,7 +1645,7 @@ }, "zip-stream": { "version": "4.1.0", - "resolved": "http://mirrors.tools.huawei.com/npm/zip-stream/-/zip-stream-4.1.0.tgz", + "resolved": "https://repo.huaweicloud.com/repository/npm/zip-stream/-/zip-stream-4.1.0.tgz", "integrity": "sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A==", "requires": { "archiver-utils": "^2.1.0", diff --git a/Distributed/OpenHarmonyPictureGame/package.json b/Distributed/OpenHarmonyPictureGame/package.json index eaf9d528b008d3dbc287a64c6e579599d69a628e..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca 100644 --- a/Distributed/OpenHarmonyPictureGame/package.json +++ b/Distributed/OpenHarmonyPictureGame/package.json @@ -1,5 +1,5 @@ { - "name": "openharmonypicturegame", + "name": "myapplication", "version": "1.0.0", "ohos": { "org": "huawei", @@ -10,7 +10,8 @@ "repository": {}, "license": "ISC", "dependencies": { - "@ohos/hvigor": "1.0.4-rc", - "@ohos/hvigor-ohos-plugin": "1.0.4-rc" + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" } } diff --git a/Distributed/RemoteControllerETS/build-profile.json5 b/Distributed/RemoteControllerETS/build-profile.json5 index 58e95a0f6664652c635545bc0175c7677f35609f..3854f71fc436e7d67fb03828698562f4dc8a3abb 100644 --- a/Distributed/RemoteControllerETS/build-profile.json5 +++ b/Distributed/RemoteControllerETS/build-profile.json5 @@ -1,14 +1,14 @@ { "app": { "signingConfigs": [], + "compileSdkVersion": 8, + "compatibleSdkVersion": 8, "products": [ { "name": "default", - "signingConfig": "debug" - }, - ], - "compileSdkVersion": 8, - "compatibleSdkVersion": 8, + "signingConfig": "default", + } + ] }, "modules": [ { @@ -18,10 +18,10 @@ { "name": "default", "applyToProducts": [ - "default", - ], - }, - ], - }, - ], + "default" + ] + } + ] + } + ] } \ No newline at end of file diff --git a/Distributed/RemoteControllerETS/entry/build-profile.json5 b/Distributed/RemoteControllerETS/entry/build-profile.json5 index d0efb91f10ca9dbdc826e854212b490c749afe6d..ae58d1d0a70c602c9cfe1909b00dfec899ba1944 100644 --- a/Distributed/RemoteControllerETS/entry/build-profile.json5 +++ b/Distributed/RemoteControllerETS/entry/build-profile.json5 @@ -9,11 +9,5 @@ { "name": "ohosTest", } - ], - "products": [ - { - "name": "default", - "signingConfig": "debug" - }, ] -} +} \ No newline at end of file diff --git a/Distributed/RemoteControllerETS/entry/package.json b/Distributed/RemoteControllerETS/entry/package.json index 1ffd85f3c9471f6b662708c65075b7504ec35ac8..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 100644 --- a/Distributed/RemoteControllerETS/entry/package.json +++ b/Distributed/RemoteControllerETS/entry/package.json @@ -6,6 +6,8 @@ "buildTool": "hvigor", "directoryLevel": "module" }, - "dependencies": { - } + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} } diff --git a/Distributed/RemoteControllerETS/package.json b/Distributed/RemoteControllerETS/package.json index d5be6dcc61730667db8fa5136e6ca42175f69003..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca 100644 --- a/Distributed/RemoteControllerETS/package.json +++ b/Distributed/RemoteControllerETS/package.json @@ -1,13 +1,17 @@ { - "name": ""myapplication", + "name": "myapplication", "version": "1.0.0", "ohos": { "org": "huawei", "buildTool": "hvigor", "directoryLevel": "project" }, + "description": "example description", + "repository": {}, + "license": "ISC", "dependencies": { - "@ohos/hvigor": "1.0.4-rc", - "@ohos/hvigor-ohos-plugin": "1.0.4-rc" + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" } } diff --git a/Distributed/RemoteStartFA/build-profile.json5 b/Distributed/RemoteStartFA/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..3854f71fc436e7d67fb03828698562f4dc8a3abb --- /dev/null +++ b/Distributed/RemoteStartFA/build-profile.json5 @@ -0,0 +1,27 @@ +{ + "app": { + "signingConfigs": [], + "compileSdkVersion": 8, + "compatibleSdkVersion": 8, + "products": [ + { + "name": "default", + "signingConfig": "default", + } + ] + }, + "modules": [ + { + "name": "entry", + "srcPath": "./entry", + "targets": [ + { + "name": "default", + "applyToProducts": [ + "default" + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Distributed/RemoteStartFA/entry/build-profile.json5 b/Distributed/RemoteStartFA/entry/build-profile.json5 new file mode 100644 index 0000000000000000000000000000000000000000..ae58d1d0a70c602c9cfe1909b00dfec899ba1944 --- /dev/null +++ b/Distributed/RemoteStartFA/entry/build-profile.json5 @@ -0,0 +1,13 @@ +{ + "apiType": 'faMode', + "buildOption": { + }, + "targets": [ + { + "name": "default", + }, + { + "name": "ohosTest", + } + ] +} \ No newline at end of file diff --git a/Distributed/RemoteStartFA/entry/hvigorfile.js b/Distributed/RemoteStartFA/entry/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..bcec4c99653062cbf17702c40a2dd2a7b809b81a --- /dev/null +++ b/Distributed/RemoteStartFA/entry/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyHapTasks diff --git a/Distributed/RemoteStartFA/entry/package.json b/Distributed/RemoteStartFA/entry/package.json index 0967ef424bce6791893e9a57bb952f80fd536e93..c4e988f30f2ec9e3430a4d0c8f05e89fabbc2659 100644 --- a/Distributed/RemoteStartFA/entry/package.json +++ b/Distributed/RemoteStartFA/entry/package.json @@ -1 +1,13 @@ -{} +{ + "name": "entry", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "module" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": {} +} diff --git a/Distributed/RemoteStartFA/entry/src/main/config.json b/Distributed/RemoteStartFA/entry/src/main/config.json index 5e27883457db3186860941b1cd4eb5012ae43e4b..6cf78d96aad2e8e7a1a963c6ae69ace08536746d 100644 --- a/Distributed/RemoteStartFA/entry/src/main/config.json +++ b/Distributed/RemoteStartFA/entry/src/main/config.json @@ -1,7 +1,7 @@ { "app": { - "bundleName": "com.huawei.cookbook", "vendor": "example", + "bundleName": "com.huawei.cookbook", "version": { "code": 1000000, "name": "1.0.0" @@ -9,18 +9,10 @@ }, "deviceConfig": {}, "module": { - "package": "com.huawei.cookbook", - "name": ".MyApplication", - "mainAbility": "com.huawei.cookbook.MainAbility", + "mainAbility": ".MainAbility", "deviceType": [ "phone" ], - "distro": { - "deliveryWithInstall": true, - "moduleName": "entry", - "moduleType": "entry", - "installationFree": false - }, "abilities": [ { "skills": [ @@ -35,10 +27,10 @@ ], "orientation": "unspecified", "visible": true, - "name": "com.huawei.cookbook.MainAbility", - "icon": "$media:icon", - "srcPath": "default", + "srcPath": "MainAbility", + "name": ".MainAbility", "srcLanguage": "js", + "icon": "$media:icon", "description": "$string:mainability_description", "formsEnabled": false, "label": "$string:entry_MainAbility", @@ -46,12 +38,21 @@ "launchType": "standard" } ], + "distro": { + "moduleType": "entry", + "installationFree": false, + "deliveryWithInstall": true, + "moduleName": "entry" + }, + "package": "com.huawei.cookbook", + "srcPath": "", + "name": ".MainAbility", "js": [ { "pages": [ "pages/index/index" ], - "name": "default", + "name": ".MainAbility", "window": { "designWidth": 720, "autoDesignWidth": false diff --git a/Distributed/RemoteStartFA/entry/src/main/js/default/app.js b/Distributed/RemoteStartFA/entry/src/main/js/MainAbility/app.js similarity index 100% rename from Distributed/RemoteStartFA/entry/src/main/js/default/app.js rename to Distributed/RemoteStartFA/entry/src/main/js/MainAbility/app.js diff --git a/Distributed/RemoteStartFA/entry/src/main/js/default/i18n/en-US.json b/Distributed/RemoteStartFA/entry/src/main/js/MainAbility/i18n/en-US.json similarity index 100% rename from Distributed/RemoteStartFA/entry/src/main/js/default/i18n/en-US.json rename to Distributed/RemoteStartFA/entry/src/main/js/MainAbility/i18n/en-US.json diff --git a/Distributed/RemoteStartFA/entry/src/main/js/default/i18n/zh-CN.json b/Distributed/RemoteStartFA/entry/src/main/js/MainAbility/i18n/zh-CN.json similarity index 100% rename from Distributed/RemoteStartFA/entry/src/main/js/default/i18n/zh-CN.json rename to Distributed/RemoteStartFA/entry/src/main/js/MainAbility/i18n/zh-CN.json diff --git a/Distributed/RemoteStartFA/entry/src/main/js/default/pages/index/index.css b/Distributed/RemoteStartFA/entry/src/main/js/MainAbility/pages/index/index.css similarity index 100% rename from Distributed/RemoteStartFA/entry/src/main/js/default/pages/index/index.css rename to Distributed/RemoteStartFA/entry/src/main/js/MainAbility/pages/index/index.css diff --git a/Distributed/RemoteStartFA/entry/src/main/js/default/pages/index/index.hml b/Distributed/RemoteStartFA/entry/src/main/js/MainAbility/pages/index/index.hml similarity index 100% rename from Distributed/RemoteStartFA/entry/src/main/js/default/pages/index/index.hml rename to Distributed/RemoteStartFA/entry/src/main/js/MainAbility/pages/index/index.hml diff --git a/Distributed/RemoteStartFA/entry/src/main/js/default/pages/index/index.js b/Distributed/RemoteStartFA/entry/src/main/js/MainAbility/pages/index/index.js similarity index 100% rename from Distributed/RemoteStartFA/entry/src/main/js/default/pages/index/index.js rename to Distributed/RemoteStartFA/entry/src/main/js/MainAbility/pages/index/index.js diff --git a/Distributed/RemoteStartFA/hvigorfile.js b/Distributed/RemoteStartFA/hvigorfile.js new file mode 100644 index 0000000000000000000000000000000000000000..cff9f0dfcf8cb00cca34e7f50d61380cf5496868 --- /dev/null +++ b/Distributed/RemoteStartFA/hvigorfile.js @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +module.exports = require('@ohos/hvigor-ohos-plugin').legacyAppTasks \ No newline at end of file diff --git a/Distributed/RemoteStartFA/package.json b/Distributed/RemoteStartFA/package.json new file mode 100644 index 0000000000000000000000000000000000000000..b43b7ab1e02f5e0683a583f80ad9b0336fb395ca --- /dev/null +++ b/Distributed/RemoteStartFA/package.json @@ -0,0 +1,17 @@ +{ + "name": "myapplication", + "version": "1.0.0", + "ohos": { + "org": "huawei", + "buildTool": "hvigor", + "directoryLevel": "project" + }, + "description": "example description", + "repository": {}, + "license": "ISC", + "dependencies": { + "hypium": "^1.0.0", + "@ohos/hvigor": "1.0.6", + "@ohos/hvigor-ohos-plugin": "1.0.6" + } +}