@cocos/ccbuild 1.0.0-alpha.9 → 1.0.0
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 +45 -0
- package/README.md +14 -14
- package/lib/api-builder.js +1 -1
- package/lib/build-engine/engine-js/index.d.ts +2 -2
- package/lib/build-engine/engine-js/index.d.ts.map +1 -1
- package/lib/build-engine/engine-js/index.js +458 -459
- package/lib/build-engine/engine-js/index.js.map +1 -1
- package/lib/build-engine/engine-js/rollup-plugins/asset-ref.d.ts +36 -36
- package/lib/build-engine/engine-js/rollup-plugins/asset-ref.js +87 -87
- package/lib/build-engine/engine-js/rollup-plugins/asset-ref.js.map +1 -1
- package/lib/build-engine/engine-js/rollup-plugins/asset-url.d.ts +7 -7
- package/lib/build-engine/engine-js/rollup-plugins/asset-url.js +92 -92
- package/lib/build-engine/engine-js/rollup-plugins/asset-url.js.map +1 -1
- package/lib/build-engine/engine-js/rollup-plugins/code-asset.d.ts +28 -28
- package/lib/build-engine/engine-js/rollup-plugins/code-asset.js +135 -135
- package/lib/build-engine/engine-js/rollup-plugins/code-asset.js.map +1 -1
- package/lib/build-engine/engine-js/rollup-plugins/remove-deprecated-features.d.ts +2 -2
- package/lib/build-engine/engine-js/rollup-plugins/remove-deprecated-features.js +37 -37
- package/lib/build-engine/engine-js/rollup-plugins/remove-deprecated-features.js.map +1 -1
- package/lib/build-engine/engine-js/rollup-plugins/ts-paths.d.ts +4 -4
- package/lib/build-engine/engine-js/rollup-plugins/ts-paths.js +42 -42
- package/lib/{engine-builder.d.ts → build-engine/engine-ts/engine-builder.d.ts} +53 -53
- package/lib/build-engine/engine-ts/engine-builder.d.ts.map +1 -0
- package/lib/{engine-builder.js → build-engine/engine-ts/engine-builder.js} +549 -549
- package/lib/build-engine/engine-ts/engine-builder.js.map +1 -0
- package/lib/build-engine/engine-ts/index.d.ts +3 -0
- package/lib/build-engine/engine-ts/index.d.ts.map +1 -0
- package/lib/build-engine/engine-ts/index.js +35 -0
- package/lib/build-engine/engine-ts/index.js.map +1 -0
- package/lib/build-engine/index.d.ts +125 -118
- package/lib/build-engine/index.d.ts.map +1 -1
- package/lib/build-engine/index.js +138 -124
- package/lib/build-engine/index.js.map +1 -1
- package/lib/index.d.ts +4 -4
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +33 -34
- package/lib/index.js.map +1 -1
- package/lib/module-resolver.d.ts +7 -7
- package/lib/module-resolver.js +28 -28
- package/lib/stats-query/config-interface.d.ts +129 -129
- package/lib/stats-query/config-interface.js +3 -3
- package/lib/stats-query/index.d.ts +161 -161
- package/lib/stats-query/index.d.ts.map +1 -1
- package/lib/stats-query/index.js +527 -527
- package/lib/stats-query/path-utils.d.ts +2 -2
- package/lib/stats-query/path-utils.js +35 -35
- package/lib/transformer/babel.d.ts +5 -5
- package/lib/transformer/babel.js +34 -34
- package/lib/transformer/index.d.ts +2 -2
- package/lib/transformer/index.js +28 -28
- package/lib/utils.d.ts +2 -2
- package/lib/utils.js +14 -14
- package/package.json +5 -2
- package/static/helper-dynamic-constants.txt +12 -12
- package/static/helper-global-exporter.txt +8 -8
- package/static/lib.dom.d.ts +20227 -20227
- package/lib/engine-builder.d.ts.map +0 -1
- package/lib/engine-builder.js.map +0 -1
- package/lib/stats-query/constant-manager.d.ts +0 -67
- package/lib/stats-query/constant-manager.d.ts.map +0 -1
- package/lib/stats-query/constant-manager.js +0 -263
- package/lib/stats-query/constant-manager.js.map +0 -1
- package/lib/transformer.js +0 -7
- package/lib/transformer.js.map +0 -1
- package/lib/tsdoc-metadata.json +0 -11
|
@@ -1,162 +1,162 @@
|
|
|
1
|
-
import { Context } from './config-interface';
|
|
2
|
-
import * as ConfigInterface from './config-interface';
|
|
3
|
-
export { ConfigInterface };
|
|
4
|
-
/**
|
|
5
|
-
* Query any any stats of the engine.
|
|
6
|
-
*/
|
|
7
|
-
export declare class StatsQuery {
|
|
8
|
-
/**
|
|
9
|
-
* @param engine Path to the engine root.
|
|
10
|
-
*/
|
|
11
|
-
static create(engine: string): Promise<StatsQuery>;
|
|
12
|
-
/**
|
|
13
|
-
* Constant manager for engine and user.
|
|
14
|
-
*/
|
|
15
|
-
constantManager: StatsQuery.ConstantManager;
|
|
16
|
-
/**
|
|
17
|
-
* Gets the path to the engine root.
|
|
18
|
-
*/
|
|
19
|
-
get path(): string;
|
|
20
|
-
/**
|
|
21
|
-
* Gets the path to tsconfig.
|
|
22
|
-
*/
|
|
23
|
-
get tsConfigPath(): string;
|
|
24
|
-
/**
|
|
25
|
-
* Gets all optimzie decorators
|
|
26
|
-
*/
|
|
27
|
-
getOptimizeDecorators(): ConfigInterface.IOptimizeDecorators;
|
|
28
|
-
/**
|
|
29
|
-
* Gets all features defined.
|
|
30
|
-
*/
|
|
31
|
-
getFeatures(): string[];
|
|
32
|
-
/**
|
|
33
|
-
* Returns if the specified feature is defined.
|
|
34
|
-
* @param feature Feature ID.
|
|
35
|
-
*/
|
|
36
|
-
hasFeature(feature: string): boolean;
|
|
37
|
-
/**
|
|
38
|
-
* Gets all feature units included in specified features.
|
|
39
|
-
* @param featureIds Feature ID.
|
|
40
|
-
*/
|
|
41
|
-
getUnitsOfFeatures(featureIds: string[]): string[];
|
|
42
|
-
getIntrinsicFlagsOfFeatures(featureIds: string[]): Record<string, string | number | boolean>;
|
|
43
|
-
/**
|
|
44
|
-
* Gets all feature units in their names.
|
|
45
|
-
*/
|
|
46
|
-
getFeatureUnits(): string[];
|
|
47
|
-
/**
|
|
48
|
-
* Gets the path to source file of the feature unit.
|
|
49
|
-
* @param moduleId Name of the feature unit.
|
|
50
|
-
*/
|
|
51
|
-
getFeatureUnitFile(featureUnit: string): string;
|
|
52
|
-
/**
|
|
53
|
-
* Gets all editor public modules in their names.
|
|
54
|
-
*/
|
|
55
|
-
getEditorPublicModules(): string[];
|
|
56
|
-
/**
|
|
57
|
-
* Gets the path to source file of the editor-public module.
|
|
58
|
-
* @param moduleName Name of the public module.
|
|
59
|
-
*/
|
|
60
|
-
getEditorPublicModuleFile(moduleName: string): string;
|
|
61
|
-
/**
|
|
62
|
-
* Gets the source of `'cc'`.
|
|
63
|
-
* @param featureUnits Involved feature units.
|
|
64
|
-
* @param mapper If exists, map the feature unit name into another module request.
|
|
65
|
-
*/
|
|
66
|
-
evaluateIndexModuleSource(featureUnits: string[], mapper?: (featureUnit: string) => string): string;
|
|
67
|
-
/**
|
|
68
|
-
* Evaluates the source of `'internal-constants'`(`'cc/env'`),
|
|
69
|
-
* @param context
|
|
70
|
-
*/
|
|
71
|
-
evaluateEnvModuleSourceFromRecord(record: Record<string, unknown>): string;
|
|
72
|
-
/**
|
|
73
|
-
* Evaluates module overrides under specified context.
|
|
74
|
-
* @param context
|
|
75
|
-
*/
|
|
76
|
-
evaluateModuleOverrides(context: Context): Record<string, string>;
|
|
77
|
-
private static _readModulesInDir;
|
|
78
|
-
private static _baseNameToFeatureUnitName;
|
|
79
|
-
private static _editorBaseNameToModuleName;
|
|
80
|
-
private constructor();
|
|
81
|
-
private _evalTest;
|
|
82
|
-
private _evalPathTemplate;
|
|
83
|
-
private _initialize;
|
|
84
|
-
private _engine;
|
|
85
|
-
private _index;
|
|
86
|
-
private _features;
|
|
87
|
-
private _config;
|
|
88
|
-
private _featureUnits;
|
|
89
|
-
private _editorPublicModules;
|
|
90
|
-
}
|
|
91
|
-
export declare namespace StatsQuery {
|
|
92
|
-
namespace ConstantManager {
|
|
93
|
-
interface IPlatformConfig {
|
|
94
|
-
HTML5: boolean;
|
|
95
|
-
NATIVE: boolean;
|
|
96
|
-
WECHAT: boolean;
|
|
97
|
-
BAIDU: boolean;
|
|
98
|
-
XIAOMI: boolean;
|
|
99
|
-
ALIPAY: boolean;
|
|
100
|
-
BYTEDANCE: boolean;
|
|
101
|
-
OPPO: boolean;
|
|
102
|
-
VIVO: boolean;
|
|
103
|
-
HUAWEI: boolean;
|
|
104
|
-
COCOSPLAY: boolean;
|
|
105
|
-
QTT: boolean;
|
|
106
|
-
LINKSURE: boolean;
|
|
107
|
-
OPEN_HARMONY: boolean;
|
|
108
|
-
TAOBAO_MINIGAME: boolean;
|
|
109
|
-
}
|
|
110
|
-
interface IInternalFlagConfig {
|
|
111
|
-
SERVER_MODE: boolean;
|
|
112
|
-
NOT_PACK_PHYSX_LIBS: boolean;
|
|
113
|
-
WEBGPU: boolean;
|
|
114
|
-
}
|
|
115
|
-
interface IPublicFlagConfig {
|
|
116
|
-
DEBUG: boolean;
|
|
117
|
-
NET_MODE: number;
|
|
118
|
-
}
|
|
119
|
-
interface IFlagConfig extends IInternalFlagConfig, IPublicFlagConfig {
|
|
120
|
-
}
|
|
121
|
-
interface IModeConfig {
|
|
122
|
-
EDITOR: boolean;
|
|
123
|
-
PREVIEW: boolean;
|
|
124
|
-
BUILD: boolean;
|
|
125
|
-
TEST: boolean;
|
|
126
|
-
}
|
|
127
|
-
interface IConstantOptions {
|
|
128
|
-
platform: PlatformType;
|
|
129
|
-
flagConfig: IFlagConfig;
|
|
130
|
-
}
|
|
131
|
-
type PlatformType = keyof IPlatformConfig;
|
|
132
|
-
type ModeType = keyof IModeConfig;
|
|
133
|
-
type FlagType = keyof IFlagConfig;
|
|
134
|
-
interface BuildTimeConstants extends IPlatformConfig, IFlagConfig, IModeConfig {
|
|
135
|
-
}
|
|
136
|
-
interface CCEnvConstants extends IPlatformConfig, IPublicFlagConfig, IModeConfig {
|
|
137
|
-
}
|
|
138
|
-
type ValueType = boolean | number;
|
|
139
|
-
interface ConstantOptions {
|
|
140
|
-
mode: ModeType;
|
|
141
|
-
platform: PlatformType;
|
|
142
|
-
flags: Partial<Record<FlagType, ValueType>>;
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
class ConstantManager {
|
|
146
|
-
private _engineRoot;
|
|
147
|
-
constructor(engineRoot: string);
|
|
148
|
-
exportDynamicConstants({ mode, platform, flags, }: ConstantManager.ConstantOptions): string;
|
|
149
|
-
genBuildTimeConstants(options: ConstantManager.ConstantOptions): ConstantManager.BuildTimeConstants;
|
|
150
|
-
genCCEnvConstants(options: ConstantManager.ConstantOptions): ConstantManager.CCEnvConstants;
|
|
151
|
-
exportStaticConstants({ mode, platform, flags, }: ConstantManager.ConstantOptions): string;
|
|
152
|
-
genInternalConstants(): string;
|
|
153
|
-
genCCEnv(): string;
|
|
154
|
-
private _genConstantDeclaration;
|
|
155
|
-
private _getConfig;
|
|
156
|
-
private _hasCCGlobal;
|
|
157
|
-
private _hasDynamic;
|
|
158
|
-
private _evalExpression;
|
|
159
|
-
private _applyOptionsToConfig;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
1
|
+
import { Context } from './config-interface';
|
|
2
|
+
import * as ConfigInterface from './config-interface';
|
|
3
|
+
export { ConfigInterface };
|
|
4
|
+
/**
|
|
5
|
+
* Query any any stats of the engine.
|
|
6
|
+
*/
|
|
7
|
+
export declare class StatsQuery {
|
|
8
|
+
/**
|
|
9
|
+
* @param engine Path to the engine root.
|
|
10
|
+
*/
|
|
11
|
+
static create(engine: string): Promise<StatsQuery>;
|
|
12
|
+
/**
|
|
13
|
+
* Constant manager for engine and user.
|
|
14
|
+
*/
|
|
15
|
+
constantManager: StatsQuery.ConstantManager;
|
|
16
|
+
/**
|
|
17
|
+
* Gets the path to the engine root.
|
|
18
|
+
*/
|
|
19
|
+
get path(): string;
|
|
20
|
+
/**
|
|
21
|
+
* Gets the path to tsconfig.
|
|
22
|
+
*/
|
|
23
|
+
get tsConfigPath(): string;
|
|
24
|
+
/**
|
|
25
|
+
* Gets all optimzie decorators
|
|
26
|
+
*/
|
|
27
|
+
getOptimizeDecorators(): ConfigInterface.IOptimizeDecorators;
|
|
28
|
+
/**
|
|
29
|
+
* Gets all features defined.
|
|
30
|
+
*/
|
|
31
|
+
getFeatures(): string[];
|
|
32
|
+
/**
|
|
33
|
+
* Returns if the specified feature is defined.
|
|
34
|
+
* @param feature Feature ID.
|
|
35
|
+
*/
|
|
36
|
+
hasFeature(feature: string): boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Gets all feature units included in specified features.
|
|
39
|
+
* @param featureIds Feature ID.
|
|
40
|
+
*/
|
|
41
|
+
getUnitsOfFeatures(featureIds: string[]): string[];
|
|
42
|
+
getIntrinsicFlagsOfFeatures(featureIds: string[]): Record<string, string | number | boolean>;
|
|
43
|
+
/**
|
|
44
|
+
* Gets all feature units in their names.
|
|
45
|
+
*/
|
|
46
|
+
getFeatureUnits(): string[];
|
|
47
|
+
/**
|
|
48
|
+
* Gets the path to source file of the feature unit.
|
|
49
|
+
* @param moduleId Name of the feature unit.
|
|
50
|
+
*/
|
|
51
|
+
getFeatureUnitFile(featureUnit: string): string;
|
|
52
|
+
/**
|
|
53
|
+
* Gets all editor public modules in their names.
|
|
54
|
+
*/
|
|
55
|
+
getEditorPublicModules(): string[];
|
|
56
|
+
/**
|
|
57
|
+
* Gets the path to source file of the editor-public module.
|
|
58
|
+
* @param moduleName Name of the public module.
|
|
59
|
+
*/
|
|
60
|
+
getEditorPublicModuleFile(moduleName: string): string;
|
|
61
|
+
/**
|
|
62
|
+
* Gets the source of `'cc'`.
|
|
63
|
+
* @param featureUnits Involved feature units.
|
|
64
|
+
* @param mapper If exists, map the feature unit name into another module request.
|
|
65
|
+
*/
|
|
66
|
+
evaluateIndexModuleSource(featureUnits: string[], mapper?: (featureUnit: string) => string): string;
|
|
67
|
+
/**
|
|
68
|
+
* Evaluates the source of `'internal-constants'`(`'cc/env'`),
|
|
69
|
+
* @param context
|
|
70
|
+
*/
|
|
71
|
+
evaluateEnvModuleSourceFromRecord(record: Record<string, unknown>): string;
|
|
72
|
+
/**
|
|
73
|
+
* Evaluates module overrides under specified context.
|
|
74
|
+
* @param context
|
|
75
|
+
*/
|
|
76
|
+
evaluateModuleOverrides(context: Context): Record<string, string>;
|
|
77
|
+
private static _readModulesInDir;
|
|
78
|
+
private static _baseNameToFeatureUnitName;
|
|
79
|
+
private static _editorBaseNameToModuleName;
|
|
80
|
+
private constructor();
|
|
81
|
+
private _evalTest;
|
|
82
|
+
private _evalPathTemplate;
|
|
83
|
+
private _initialize;
|
|
84
|
+
private _engine;
|
|
85
|
+
private _index;
|
|
86
|
+
private _features;
|
|
87
|
+
private _config;
|
|
88
|
+
private _featureUnits;
|
|
89
|
+
private _editorPublicModules;
|
|
90
|
+
}
|
|
91
|
+
export declare namespace StatsQuery {
|
|
92
|
+
namespace ConstantManager {
|
|
93
|
+
interface IPlatformConfig {
|
|
94
|
+
HTML5: boolean;
|
|
95
|
+
NATIVE: boolean;
|
|
96
|
+
WECHAT: boolean;
|
|
97
|
+
BAIDU: boolean;
|
|
98
|
+
XIAOMI: boolean;
|
|
99
|
+
ALIPAY: boolean;
|
|
100
|
+
BYTEDANCE: boolean;
|
|
101
|
+
OPPO: boolean;
|
|
102
|
+
VIVO: boolean;
|
|
103
|
+
HUAWEI: boolean;
|
|
104
|
+
COCOSPLAY: boolean;
|
|
105
|
+
QTT: boolean;
|
|
106
|
+
LINKSURE: boolean;
|
|
107
|
+
OPEN_HARMONY: boolean;
|
|
108
|
+
TAOBAO_MINIGAME: boolean;
|
|
109
|
+
}
|
|
110
|
+
interface IInternalFlagConfig {
|
|
111
|
+
SERVER_MODE: boolean;
|
|
112
|
+
NOT_PACK_PHYSX_LIBS: boolean;
|
|
113
|
+
WEBGPU: boolean;
|
|
114
|
+
}
|
|
115
|
+
interface IPublicFlagConfig {
|
|
116
|
+
DEBUG: boolean;
|
|
117
|
+
NET_MODE: number;
|
|
118
|
+
}
|
|
119
|
+
interface IFlagConfig extends IInternalFlagConfig, IPublicFlagConfig {
|
|
120
|
+
}
|
|
121
|
+
interface IModeConfig {
|
|
122
|
+
EDITOR: boolean;
|
|
123
|
+
PREVIEW: boolean;
|
|
124
|
+
BUILD: boolean;
|
|
125
|
+
TEST: boolean;
|
|
126
|
+
}
|
|
127
|
+
interface IConstantOptions {
|
|
128
|
+
platform: PlatformType;
|
|
129
|
+
flagConfig: IFlagConfig;
|
|
130
|
+
}
|
|
131
|
+
type PlatformType = keyof IPlatformConfig | string;
|
|
132
|
+
type ModeType = keyof IModeConfig;
|
|
133
|
+
type FlagType = keyof IFlagConfig;
|
|
134
|
+
interface BuildTimeConstants extends IPlatformConfig, IFlagConfig, IModeConfig {
|
|
135
|
+
}
|
|
136
|
+
interface CCEnvConstants extends IPlatformConfig, IPublicFlagConfig, IModeConfig {
|
|
137
|
+
}
|
|
138
|
+
type ValueType = boolean | number;
|
|
139
|
+
interface ConstantOptions {
|
|
140
|
+
mode: ModeType;
|
|
141
|
+
platform: PlatformType;
|
|
142
|
+
flags: Partial<Record<FlagType, ValueType>>;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
class ConstantManager {
|
|
146
|
+
private _engineRoot;
|
|
147
|
+
constructor(engineRoot: string);
|
|
148
|
+
exportDynamicConstants({ mode, platform, flags, }: ConstantManager.ConstantOptions): string;
|
|
149
|
+
genBuildTimeConstants(options: ConstantManager.ConstantOptions): ConstantManager.BuildTimeConstants;
|
|
150
|
+
genCCEnvConstants(options: ConstantManager.ConstantOptions): ConstantManager.CCEnvConstants;
|
|
151
|
+
exportStaticConstants({ mode, platform, flags, }: ConstantManager.ConstantOptions): string;
|
|
152
|
+
genInternalConstants(): string;
|
|
153
|
+
genCCEnv(): string;
|
|
154
|
+
private _genConstantDeclaration;
|
|
155
|
+
private _getConfig;
|
|
156
|
+
private _hasCCGlobal;
|
|
157
|
+
private _hasDynamic;
|
|
158
|
+
private _evalExpression;
|
|
159
|
+
private _applyOptionsToConfig;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
162
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/stats-query/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/stats-query/index.ts"],"names":[],"mappings":"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"}
|