miniprogram-ci 2.1.13 → 2.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/README.md +2 -0
- package/dist/@types/config/config.d.ts +1 -1
- package/dist/@types/schema/@types/appjson.d.ts +6 -1
- package/dist/@types/schema/@types/extjson.d.ts +1 -2
- package/dist/ci/android-miniapp-toolkit/dist/index.js +1 -1
- package/dist/common/code-analyse/index.js +1 -1
- package/dist/config/config.js +1 -1
- package/dist/modules/corecompiler/original/json/page/getPageJSON.js +1 -1
- package/dist/modules/nativecompiler/ios/buildCloud.js +1 -1
- package/dist/schema/dist/app.js +117 -49
- package/dist/schema/dist/ext.js +1 -31
- package/dist/schema/dist/game.js +1 -1
- package/dist/schema/dist/page.js +1 -1
- package/dist/schema/dist/plugin.js +1 -1
- package/dist/schema/dist/pluginpage.js +1 -1
- package/dist/schema/dist/projectconfig.js +1 -1
- package/dist/schema/dist/projectprivateconfig.js +1 -1
- package/dist/schema/dist/sitemap.js +1 -1
- package/dist/schema/dist/theme.js +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,6 +7,8 @@ miniprogram-ci 是从[微信开发者工具](https://developers.weixin.qq.com/mi
|
|
|
7
7
|
miniprogram-ci 从 1.0.28 开始支持第三方平台开发的上传和预览,调用方式与普通开发模式无异。[查看详情](#第三方平台开发)
|
|
8
8
|
|
|
9
9
|
## 最近变更
|
|
10
|
+
#### 2.1.14
|
|
11
|
+
- `fix` 修复 缺少 tmp 依赖的问题
|
|
10
12
|
#### 2.1.13
|
|
11
13
|
- `fix` 修复 进程不退出的问题
|
|
12
14
|
- `fix` 修复 useCos 情况下 robot失效的问题
|
|
@@ -97,6 +97,12 @@ interface IOriginAppJSON {
|
|
|
97
97
|
};
|
|
98
98
|
subPackages?: Array<ISubPackageItem>;
|
|
99
99
|
subpackages?: Array<ISubPackageItem>;
|
|
100
|
+
chatTools?: {
|
|
101
|
+
root: string;
|
|
102
|
+
entryPagePath: string;
|
|
103
|
+
desc: string;
|
|
104
|
+
scopes?: Array<string>;
|
|
105
|
+
}[];
|
|
100
106
|
preloadRule?: {
|
|
101
107
|
[key: string]: {
|
|
102
108
|
network?: 'all' | 'wifi';
|
|
@@ -159,7 +165,6 @@ interface IOriginAppJSON {
|
|
|
159
165
|
enablePassiveEvent?: boolean | {
|
|
160
166
|
[key: string]: boolean;
|
|
161
167
|
};
|
|
162
|
-
supportedMaterials?: ISupportMaterial[];
|
|
163
168
|
requireBackgroundModes?: string[];
|
|
164
169
|
embeddedAppIdList?: string[];
|
|
165
170
|
renderer?: "skyline" | "webview";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IPluginConfig, ISubPackageItem, IWindow, ITabBar,
|
|
1
|
+
import { IPluginConfig, ISubPackageItem, IWindow, ITabBar, IRequirePrivateInfos } from './appjson';
|
|
2
2
|
import { IPageJSON } from './pagejson';
|
|
3
3
|
export interface IExtJSON {
|
|
4
4
|
extAppid: string;
|
|
@@ -76,7 +76,6 @@ export interface IExtJSON {
|
|
|
76
76
|
enablePassiveEvent?: boolean | {
|
|
77
77
|
[key: string]: boolean;
|
|
78
78
|
};
|
|
79
|
-
supportedMaterials?: ISupportMaterial[];
|
|
80
79
|
lazyCodeLoading?: 'requiredComponents';
|
|
81
80
|
requiredPrivateInfos?: IRequirePrivateInfos;
|
|
82
81
|
}
|