miniprogram-ci 2.1.7 → 2.1.8

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.
@@ -10,6 +10,7 @@ type ProjectEventEmitter = MiniProgramSummer.TypedEventEmitter<{
10
10
  export declare abstract class BaseProject extends WaitAble implements MiniProgramCore.IProject {
11
11
  protected _nameMappingFromDevtools?: MiniProgramCore.IStringKeyMap<string> | undefined;
12
12
  protected _projectPath: string;
13
+ protected _injectedPages: string[];
13
14
  protected _projectArchitecture: MiniProgramCore.IProjectArchitecture;
14
15
  protected _miniprogramRoot: string;
15
16
  protected _pluginRoot: string;
@@ -28,6 +29,7 @@ export declare abstract class BaseProject extends WaitAble implements MiniProgra
28
29
  protected _fileSet: Set<string>;
29
30
  event: ProjectEventEmitter;
30
31
  get projectPath(): string;
32
+ get injectedPages(): string[];
31
33
  get projectArchitecture(): import("../types").MiniProgramCI.IProjectArchitecture;
32
34
  get srcPath(): string;
33
35
  get pluginSrcPath(): string;
@@ -38,7 +38,7 @@ export interface IWindow {
38
38
  renderingMode?: 'seperated' | 'mixed';
39
39
  restartStrategy?: 'homePage' | 'homePageAndLatestPage';
40
40
  visualEffectInBackground?: 'hidden' | 'none';
41
- initialRenderingCache?: 'static' | 'dynamic';
41
+ initialRenderingCache?: 'static' | 'dynamic' | 'capture';
42
42
  handleWebviewPreload?: 'static' | 'manual' | 'auto';
43
43
  homeButton?: boolean;
44
44
  }
@@ -44,6 +44,7 @@ export declare namespace MiniProgramCI {
44
44
  appid: string;
45
45
  type: ProjectType;
46
46
  projectPath: string;
47
+ injectedPages: string[];
47
48
  privateKey: string;
48
49
  miniprogramRoot: string;
49
50
  pluginRoot: string;
@@ -50,6 +50,7 @@ export declare namespace MiniProgramDevtools {
50
50
  ignore: MiniProgramDevtools.IProjectConfigPackOption[];
51
51
  include: MiniProgramDevtools.IProjectConfigPackOption[];
52
52
  };
53
+ injectedPages?: string[];
53
54
  }
54
55
  type GraphId = MiniProgramCore.ProjectType;
55
56
  type IGetConfOptions = {