From b8e0cc554bed4c7f94343bb716ef6950ea7bbee7 Mon Sep 17 00:00:00 2001 From: fxy060608 Date: Tue, 12 Jan 2021 15:51:44 +0800 Subject: [PATCH] docs(uni_modules): add uni_modules.config.json --- docs/uni_modules.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/uni_modules.md b/docs/uni_modules.md index 7910485d69..665ea6e9ce 100644 --- a/docs/uni_modules.md +++ b/docs/uni_modules.md @@ -89,6 +89,20 @@ package.json在每个uni_modules插件中都必须存在,包含了插件的基 } } ``` - +#### uni_modules.config.json +uni_modules.config.json在项目根目录,包含了插件的。以下是uni_modules.config.json的详细配置说明(拷贝代码记得去掉注释!) +```json +{ + "scripts": { + "postupdate": "node scripts/upgrade.js" // 每个插件更新后都执行该脚本,可从process.env.UNI_MODULES_ID获取当前被更新的插件ID + }, + "uni_modules": { + "uni-id": { // 插件ID + "uniCloud": ["aliyun", "tcb"] // 当项目同时存在aliyun,tcb时可手动指定 + } + } +} += +``` ### 使用 uni_modules ### 开发 uni_modules \ No newline at end of file -- GitLab