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 CHANGED
@@ -1,3 +1,5 @@
1
+ ### 2.1.14
2
+ - `fix` 修复 缺少 tmp 依赖的问题
1
3
  #### 2.1.13
2
4
  - `fix` 修复 进程不退出的问题
3
5
  - `fix` 修复 useCos 情况下 robot失效的问题
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失效的问题
@@ -1,5 +1,5 @@
1
1
  import { IProject } from '../types';
2
- export declare const CI_VERSION = "2.1.13";
2
+ export declare const CI_VERSION = "2.1.14";
3
3
  export declare const PARAM_ERROR = 10000;
4
4
  export declare const WXML_NOT_FOUND = 10007;
5
5
  export declare const JS_NOT_FOUND = 10008;
@@ -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, ISupportMaterial, IRequirePrivateInfos } from './appjson';
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
  }