@playcraft/devkit 1.0.16 → 1.0.18
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/README.md +259 -0
- package/cli/bin/playable-scripts.js +44 -1
- package/cli/commands/build.js +130 -17
- package/cli/commands/builds.js +13 -2
- package/cli/commands/dev.js +7 -1
- package/cli/commands/pack.js +308 -39
- package/cli/commands/vite-dev.js +7 -1
- package/core/batch-build.js +1091 -124
- package/core/cos-uploader.js +264 -20
- package/core/index.js +71 -4
- package/core/loaders/gltf-loader.js +74 -28
- package/core/options.js +310 -15
- package/core/plugins/AdikteevInjectorPlugin.js +26 -4
- package/core/plugins/BigoAdsInjectorPlugin.js +21 -4
- package/core/plugins/DAPIInjectorPlugin.js +25 -2
- package/core/plugins/DebuggerInjectionPlugin.js +31 -3
- package/core/plugins/ExitAPIInjectorPlugin.js +57 -3
- package/core/plugins/FflateCompressionPlugin.js +225 -37
- package/core/plugins/FontInjectionWebpackPlugin.js +59 -0
- package/core/plugins/LiftoffInjectorPlugin.js +26 -4
- package/core/plugins/MRAIDInjectorPlugin.js +24 -2
- package/core/plugins/MintegralInjectorPlugin.js +25 -2
- package/core/plugins/PangleInjectorPlugin.js +24 -2
- package/core/plugins/SnapchatInjectorPlugin.js +26 -4
- package/core/plugins/TikTokInjectorPlugin.js +24 -2
- package/core/plugins/UnityInjectorPlugin.js +37 -8
- package/core/plugins/ZipPlugin.js +138 -19
- package/core/resources/fonts/README.md +31 -0
- package/core/resources/fonts/maoken-regular.woff2 +0 -0
- package/core/resources/fonts/maoken-regular.woff2.chars +1 -0
- package/core/resources/fonts/maoken-zhuyuan.ttf +0 -0
- package/core/resources/fonts/noto-sans-sc-regular.woff2 +0 -0
- package/core/resources/fonts/pangmen-biaoti.ttf +0 -0
- package/core/resources/fonts/pangmen-regular.woff2 +0 -0
- package/core/resources/fonts/pangmen-regular.woff2.chars +1 -0
- package/core/resources/fonts/poppins-regular.woff2 +0 -0
- package/core/utils/buildDefines.js +29 -2
- package/core/utils/buildTemplateString.js +40 -5
- package/core/utils/date.js +16 -1
- package/core/utils/fontRegistry.js +97 -0
- package/core/utils/fontResolver.js +398 -0
- package/core/utils/generateAdikteevHtmlWebpackPluginConfig.js +42 -7
- package/core/utils/generateBigabidHtmlWebpackPluginConfig.js +30 -3
- package/core/utils/generateInMobiHtmlWebpackPluginConfig.js +43 -7
- package/core/utils/injectSDKPlugins.js +58 -11
- package/core/utils/logOptions.js +37 -4
- package/core/utils/mergeOptions.js +19 -2
- package/core/utils/parseArgvOptions.js +110 -5
- package/core/utils/resolveChannelFold2Zip.js +15 -3
- package/core/utils/validateThemeData.js +220 -25
- package/core/validators/pre-build-checker.js +201 -21
- package/core/validators/tracking-validator.js +358 -40
- package/core/vite.dev.js +332 -16
- package/core/webpack.build.js +494 -52
- package/core/webpack.common.js +177 -11
- package/core/webpack.dev.js +82 -5
- package/package.json +3 -2
package/core/webpack.build.js
CHANGED
|
@@ -1,62 +1,504 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
const { merge } = require('webpack-merge');
|
|
2
|
+
const { webpackCommonConfig } = require('./webpack.common.js');
|
|
3
|
+
const webpack = require('webpack');
|
|
4
|
+
const TerserPlugin = require('terser-webpack-plugin');
|
|
5
|
+
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
6
|
+
const HtmlInlineScriptPlugin = require('html-inline-script-webpack-plugin');
|
|
7
|
+
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
8
|
+
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
9
|
+
const { ZipPlugin } = require('./plugins/ZipPlugin.js');
|
|
10
|
+
const { FflateCompressionPlugin } = require('./plugins/FflateCompressionPlugin.js');
|
|
11
|
+
const { generateAdikteevHtmlWebpackPluginConfig } = require('./utils/generateAdikteevHtmlWebpackPluginConfig.js');
|
|
12
|
+
const { generateBigabidHtmlWebpackPluginConfig } = require('./utils/generateBigabidHtmlWebpackPluginConfig.js');
|
|
13
|
+
const { generateInMobiHtmlWebpackPluginConfig } = require('./utils/generateInMobiHtmlWebpackPluginConfig.js');
|
|
14
|
+
const path = require('path');
|
|
15
|
+
const { mergeOptions } = require('./utils/mergeOptions.js');
|
|
16
|
+
const { options } = require('./options.js');
|
|
17
|
+
const { buildDefines } = require('./utils/buildDefines.js');
|
|
18
|
+
const { buildTemplateString } = require('./utils/buildTemplateString.js');
|
|
19
|
+
const { logOptions } = require('./utils/logOptions.js');
|
|
20
|
+
const { injectSDKPlugins } = require('./utils/injectSDKPlugins.js');
|
|
21
|
+
const { resolveChannelFold2Zip } = require('./utils/resolveChannelFold2Zip.js');
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
const META = {
|
|
25
|
+
COMMON_CHARSET: 'utf-8',
|
|
26
|
+
COMMON_VIEWPORT: 'width=device-width,initial-scale=1.0,viewport-fit=cover,maximum-scale=1.0,user-scalable=no',
|
|
27
|
+
MINTEGRAL_VIEWPORT: 'width=device-width,user-scalable=no,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0',
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
const FontFamily = {
|
|
31
|
+
LIFTOFF: '<style>body{font-family:Roboto,"Helvetica Neue",-apple-system,BlinkMacSystemFont,sans-serif}</style>',
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* HtmlWebpackPlugin beforeEmit 钩子。
|
|
36
|
+
* 在最终 HTML 输出前统一修正 meta 标签:
|
|
37
|
+
* - charset → 统一小写 utf-8
|
|
38
|
+
* - viewport → 统一替换为渠道通道规范值
|
|
39
|
+
* 项目模板无需关心 meta 标签,全部由 devkit 构建时自动处理。
|
|
40
|
+
*/
|
|
41
|
+
class MetaTagOverridePlugin {
|
|
42
|
+
constructor(adNetwork) {
|
|
43
|
+
this.adNetwork = adNetwork;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
apply(compiler) {
|
|
47
|
+
compiler.hooks.compilation.tap('MetaTagOverridePlugin', (compilation) => {
|
|
48
|
+
HtmlWebpackPlugin.getHooks(compilation).beforeEmit.tap('MetaTagOverridePlugin', (data) => {
|
|
49
|
+
// charset: 统一小写
|
|
50
|
+
data.html = data.html.replace(/<meta\s+charset=["'][^"']*["']\s*\/?>/i, '<meta charset="utf-8" />');
|
|
51
|
+
// viewport: Mintegral 需要 minimum-scale,其他渠道通用
|
|
52
|
+
const viewportContent = this.adNetwork === 'mintegral'
|
|
53
|
+
? META.MINTEGRAL_VIEWPORT
|
|
54
|
+
: META.COMMON_VIEWPORT;
|
|
55
|
+
data.html = data.html.replace(
|
|
56
|
+
/<meta\s+name=["']viewport["'][^>]*\/?>/i,
|
|
57
|
+
`<meta name="viewport" content="${viewportContent}" />`
|
|
58
|
+
);
|
|
59
|
+
// font-family: Liftoff 渠道需要指定系统字体
|
|
60
|
+
if (this.adNetwork === 'liftoff') {
|
|
61
|
+
const fontStyle = FontFamily.LIFTOFF;
|
|
62
|
+
data.html = data.html.replace('</head>', fontStyle + '</head>');
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
return data;
|
|
66
|
+
});
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/** @type {AD_NETWORK[]} */
|
|
72
|
+
/** @type {AD_NETWORK[]} */
|
|
73
|
+
const zipOutputNetworks = [
|
|
74
|
+
'google',
|
|
75
|
+
'pangle',
|
|
76
|
+
'tiktok',
|
|
77
|
+
'vungle',
|
|
78
|
+
'mytarget',
|
|
79
|
+
'mintegral',
|
|
80
|
+
'adikteev',
|
|
81
|
+
'bigabid',
|
|
82
|
+
'inmobi', // InMobi 支持 ZIP 格式(包含 index.html + 资源文件)
|
|
83
|
+
'snapchat',
|
|
84
|
+
'bigoads',
|
|
85
|
+
'liftoff'
|
|
86
|
+
];
|
|
87
|
+
/** @type {AD_NETWORK[]} */
|
|
88
|
+
const zipOutputAllowedNetworks = ['facebook', 'moloco'];
|
|
89
|
+
|
|
90
|
+
/**
|
|
3
91
|
* Creates webpack configuration for production build
|
|
4
92
|
* @param {Partial<import('./index').CLIOptions>} [customOptions] - Custom options to merge with default options
|
|
5
93
|
* @param {Record<string, any>} [customDefines] - Additional defines for webpack.DefinePlugin
|
|
6
94
|
* @param {import('webpack').Configuration} [webpackCustomConfig] - Custom webpack config to merge
|
|
7
95
|
* @returns {import('webpack').Configuration} Final webpack production configuration
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
if(adNetwork
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
96
|
+
*/
|
|
97
|
+
function makeWebpackBuildConfig(customOptions, customDefines, webpackCustomConfig) {
|
|
98
|
+
const buildOptions = mergeOptions(options, customOptions);
|
|
99
|
+
logOptions(buildOptions);
|
|
100
|
+
customDefines = customDefines || {};
|
|
101
|
+
webpackCustomConfig = webpackCustomConfig || {};
|
|
102
|
+
|
|
103
|
+
/** @type {AD_NETWORK} */
|
|
104
|
+
const adNetwork = buildOptions['network'];
|
|
105
|
+
|
|
106
|
+
/** @type {AD_PROTOCOL} */
|
|
107
|
+
const adProtocol = buildOptions['protocol'];
|
|
108
|
+
|
|
109
|
+
let outDir = buildTemplateString(buildOptions.outDir, buildOptions);
|
|
110
|
+
|
|
111
|
+
function getFileName() {
|
|
112
|
+
let filename = buildTemplateString(buildOptions.filename, buildOptions);
|
|
113
|
+
|
|
114
|
+
if (adNetwork === 'mintegral') return filename.replace(/\s+/g, '').replace(/[^a-zA-Z0-9]/g, '_').replace('_fullhash_6_', '[fullhash:6]');
|
|
115
|
+
return filename;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
const isZipOutput =
|
|
119
|
+
zipOutputNetworks.includes(adNetwork) || (buildOptions.zip && zipOutputAllowedNetworks.includes(adNetwork));
|
|
120
|
+
|
|
121
|
+
const { isChannelFold2Zip, isZipOutputFinal } = resolveChannelFold2Zip({
|
|
122
|
+
isChannelFold2ZipOption: buildOptions.isChannelFold2Zip,
|
|
123
|
+
adNetwork,
|
|
124
|
+
isZipOutput
|
|
125
|
+
});
|
|
126
|
+
|
|
127
|
+
let htmlFileName = '';
|
|
128
|
+
if (adNetwork === 'mintegral') htmlFileName = 'index.html'; // 修改为 index.html
|
|
129
|
+
else if (isZipOutputFinal) htmlFileName = 'index.html';
|
|
130
|
+
else htmlFileName = `${getFileName()}.html`;
|
|
131
|
+
|
|
132
|
+
const metaTags = {
|
|
133
|
+
viewport: META.COMMON_VIEWPORT,
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
if (adNetwork === 'mintegral') {
|
|
137
|
+
metaTags['viewport'] = META.MINTEGRAL_VIEWPORT;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
if (!buildOptions.skipRecommendedMeta) {
|
|
141
|
+
metaTags['HandheldFriendly'] = 'True';
|
|
142
|
+
metaTags['cleartype'] = { 'http-equiv': 'cleartype', content: 'on' };
|
|
143
|
+
metaTags['apple-mobile-web-app-capable'] = 'yes';
|
|
144
|
+
metaTags['mobile-web-app-capable'] = 'yes';
|
|
145
|
+
metaTags['X-UA-Compatible'] = { 'http-equiv': 'X-UA-Compatible', content: 'IE=10' };
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
let htmlWebpackPluginConfig = {
|
|
149
|
+
template: path.resolve('src/index.html'),
|
|
150
|
+
filename: htmlFileName,
|
|
151
|
+
title: `${buildOptions.name} - ${buildOptions.app}`,
|
|
152
|
+
inlineSource: '.(js|css|png|jpg|webp|svg|xml|atlas|mp3|gif|glb|fbx|obj)$',
|
|
153
|
+
meta: metaTags
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
if (adNetwork === 'adikteev') htmlWebpackPluginConfig = generateAdikteevHtmlWebpackPluginConfig('src/index.html');
|
|
157
|
+
else if (adNetwork === 'bigabid') htmlWebpackPluginConfig = generateBigabidHtmlWebpackPluginConfig('src/index.html');
|
|
158
|
+
else if (adNetwork === 'inmobi')
|
|
159
|
+
htmlWebpackPluginConfig = generateInMobiHtmlWebpackPluginConfig('src/index.html', buildOptions);
|
|
160
|
+
|
|
161
|
+
const webpackConfig = merge(
|
|
162
|
+
webpackCommonConfig,
|
|
163
|
+
{
|
|
164
|
+
mode: 'production',
|
|
165
|
+
stats: 'errors-only',
|
|
166
|
+
optimization: {
|
|
167
|
+
usedExports: true,
|
|
168
|
+
minimize: (buildOptions.obfuscateLevel !== undefined ? buildOptions.obfuscateLevel : 2) >= 1,
|
|
169
|
+
minimizer: [
|
|
170
|
+
new TerserPlugin({
|
|
171
|
+
extractComments: false,
|
|
172
|
+
terserOptions: {
|
|
173
|
+
safari10: true,
|
|
174
|
+
mangle: {
|
|
175
|
+
reserved: ['$'],
|
|
176
|
+
// ⚠️ 不要开启 properties: true,会混淆 Phaser 等框架的属性名导致运行时错误
|
|
177
|
+
// properties: true,
|
|
178
|
+
toplevel: true
|
|
179
|
+
},
|
|
180
|
+
compress: {
|
|
181
|
+
drop_console: true,
|
|
182
|
+
arrows: false,
|
|
183
|
+
drop_debugger: true,
|
|
184
|
+
unused: true,
|
|
185
|
+
dead_code: true,
|
|
186
|
+
// 🔥 增加优化轮数
|
|
187
|
+
passes: 3,
|
|
188
|
+
// 🔥 激进压缩选项
|
|
189
|
+
inline: 3, // 最大内联
|
|
190
|
+
collapse_vars: true, // 折叠变量
|
|
191
|
+
reduce_vars: true, // 减少变量
|
|
192
|
+
hoist_vars: true, // 提升变量
|
|
193
|
+
hoist_funs: true, // 提升函数
|
|
194
|
+
sequences: 20, // 更长的序列化
|
|
195
|
+
properties: true, // 优化属性访问
|
|
196
|
+
conditionals: true, // 优化条件
|
|
197
|
+
comparisons: true, // 优化比较
|
|
198
|
+
booleans: true, // 优化布尔
|
|
199
|
+
loops: true, // 优化循环
|
|
200
|
+
if_return: true, // 优化 if-return
|
|
201
|
+
join_vars: true, // 合并变量
|
|
202
|
+
negate_iife: true, // 否定 IIFE
|
|
203
|
+
side_effects: true, // 移除副作用
|
|
204
|
+
switches: true, // 优化 switch
|
|
205
|
+
typeofs: true, // 优化 typeof
|
|
206
|
+
unsafe: false, // 不使用 unsafe(避免破坏框架)
|
|
207
|
+
keep_fargs: false, // 移除未使用参数
|
|
208
|
+
drop_console: true
|
|
209
|
+
},
|
|
210
|
+
output: {
|
|
211
|
+
comments: false,
|
|
212
|
+
quote_style: 3,
|
|
213
|
+
beautify: false,
|
|
214
|
+
wrap_iife: true,
|
|
215
|
+
ecma: 2015
|
|
216
|
+
},
|
|
217
|
+
toplevel: true,
|
|
218
|
+
keep_classnames: false,
|
|
219
|
+
keep_fnames: false
|
|
220
|
+
}
|
|
221
|
+
})
|
|
222
|
+
]
|
|
223
|
+
},
|
|
224
|
+
plugins: [
|
|
225
|
+
new HtmlWebpackPlugin(htmlWebpackPluginConfig),
|
|
226
|
+
new MetaTagOverridePlugin(adNetwork),
|
|
227
|
+
|
|
228
|
+
new webpack.DefinePlugin({
|
|
229
|
+
...buildDefines(),
|
|
230
|
+
...buildOptions.defines,
|
|
231
|
+
...customDefines
|
|
232
|
+
}),
|
|
233
|
+
|
|
234
|
+
// For some reason needed for PIXI v8
|
|
235
|
+
new webpack.optimize.LimitChunkCountPlugin({
|
|
236
|
+
maxChunks: 1
|
|
237
|
+
})
|
|
238
|
+
]
|
|
239
|
+
},
|
|
240
|
+
webpackCustomConfig
|
|
241
|
+
);
|
|
242
|
+
|
|
243
|
+
webpackConfig.output.path = path.resolve(outDir);
|
|
244
|
+
|
|
245
|
+
// 根据混淆等级注入 obfuscator loader
|
|
246
|
+
const obfuscateLevel = buildOptions.obfuscateLevel !== undefined ? buildOptions.obfuscateLevel : 2;
|
|
247
|
+
|
|
248
|
+
// 获取需要排除压缩的目录列表
|
|
249
|
+
const excludeCompressDirs = buildOptions.excludeCompressDirs || [];
|
|
250
|
+
|
|
251
|
+
if (obfuscateLevel >= 2) {
|
|
252
|
+
// 构建各等级的 obfuscator 配置
|
|
253
|
+
const obfuscatorOptions = {
|
|
254
|
+
// 通用基础配置
|
|
255
|
+
target: 'browser',
|
|
256
|
+
sourceMap: false,
|
|
257
|
+
selfDefending: false,
|
|
258
|
+
renameProperties: false,
|
|
259
|
+
disableConsoleOutput: true,
|
|
260
|
+
splitStrings: false,
|
|
261
|
+
unicodeEscapeSequence: false
|
|
262
|
+
};
|
|
263
|
+
|
|
264
|
+
if (obfuscateLevel === 2) {
|
|
265
|
+
// 等级2:基础混淆(控制流平坦化 + 字符串数组)
|
|
266
|
+
Object.assign(obfuscatorOptions, {
|
|
267
|
+
controlFlowFlattening: true,
|
|
268
|
+
controlFlowFlatteningThreshold: 0.75,
|
|
269
|
+
deadCodeInjection: false,
|
|
270
|
+
stringArray: true,
|
|
271
|
+
stringArrayThreshold: 0.75,
|
|
272
|
+
stringArrayEncoding: ['base64'],
|
|
273
|
+
stringArrayIndexShift: true,
|
|
274
|
+
stringArrayRotate: true,
|
|
275
|
+
stringArrayShuffle: true,
|
|
276
|
+
stringArrayWrappersCount: 2,
|
|
277
|
+
stringArrayWrappersChainedCalls: true,
|
|
278
|
+
stringArrayWrappersType: 'function',
|
|
279
|
+
stringArrayCallsTransform: true,
|
|
280
|
+
stringArrayCallsTransformThreshold: 0.75,
|
|
281
|
+
transformObjectKeys: true,
|
|
282
|
+
identifierNamesGenerator: 'hexadecimal'
|
|
283
|
+
});
|
|
284
|
+
} else if (obfuscateLevel === 3) {
|
|
285
|
+
// 等级3:在等级2基础上增加死代码注入
|
|
286
|
+
Object.assign(obfuscatorOptions, {
|
|
287
|
+
controlFlowFlattening: true,
|
|
288
|
+
controlFlowFlatteningThreshold: 0.75,
|
|
289
|
+
deadCodeInjection: true,
|
|
290
|
+
deadCodeInjectionThreshold: 0.4,
|
|
291
|
+
stringArray: true,
|
|
292
|
+
stringArrayThreshold: 0.75,
|
|
293
|
+
stringArrayEncoding: ['base64'],
|
|
294
|
+
stringArrayIndexShift: true,
|
|
295
|
+
stringArrayRotate: true,
|
|
296
|
+
stringArrayShuffle: true,
|
|
297
|
+
stringArrayWrappersCount: 2,
|
|
298
|
+
stringArrayWrappersChainedCalls: true,
|
|
299
|
+
stringArrayWrappersType: 'function',
|
|
300
|
+
stringArrayCallsTransform: true,
|
|
301
|
+
stringArrayCallsTransformThreshold: 0.75,
|
|
302
|
+
transformObjectKeys: true,
|
|
303
|
+
identifierNamesGenerator: 'hexadecimal'
|
|
304
|
+
});
|
|
305
|
+
} else if (obfuscateLevel === 4) {
|
|
306
|
+
// 等级4:最高强度混淆
|
|
307
|
+
Object.assign(obfuscatorOptions, {
|
|
308
|
+
controlFlowFlattening: true,
|
|
309
|
+
controlFlowFlatteningThreshold: 1,
|
|
310
|
+
deadCodeInjection: true,
|
|
311
|
+
deadCodeInjectionThreshold: 0.5,
|
|
312
|
+
stringArray: true,
|
|
313
|
+
stringArrayThreshold: 1,
|
|
314
|
+
stringArrayEncoding: ['rc4'],
|
|
315
|
+
stringArrayIndexShift: true,
|
|
316
|
+
stringArrayRotate: true,
|
|
317
|
+
stringArrayShuffle: true,
|
|
318
|
+
stringArrayWrappersCount: 3,
|
|
319
|
+
stringArrayWrappersChainedCalls: true,
|
|
320
|
+
stringArrayWrappersType: 'function',
|
|
321
|
+
stringArrayCallsTransform: true,
|
|
322
|
+
stringArrayCallsTransformThreshold: 1,
|
|
323
|
+
transformObjectKeys: true,
|
|
324
|
+
identifierNamesGenerator: 'hexadecimal',
|
|
325
|
+
splitStrings: true,
|
|
326
|
+
splitStringsChunkLength: 5,
|
|
327
|
+
unicodeEscapeSequence: true,
|
|
328
|
+
});
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
console.log(`Obfuscation level: ${obfuscateLevel} (${['', 'terser-only', 'basic', 'dead-code', 'maximum'][obfuscateLevel]})`);
|
|
332
|
+
|
|
333
|
+
// 构建exclude数组,包含node_modules和用户指定的排除目录
|
|
334
|
+
const excludePatterns = [];
|
|
335
|
+
if (excludeCompressDirs.length > 0) {
|
|
336
|
+
excludeCompressDirs.forEach(dir => {
|
|
337
|
+
excludePatterns.push(path.resolve(dir));
|
|
338
|
+
});
|
|
339
|
+
console.log(`ℹ️ Excluding directories from compression: ${excludeCompressDirs.join(', ')}`);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
webpackConfig.module.rules.push({
|
|
343
|
+
test: /\.(js|ts)$/,
|
|
344
|
+
include: [path.resolve('src')],
|
|
345
|
+
exclude: excludePatterns,
|
|
346
|
+
enforce: 'post',
|
|
347
|
+
use: {
|
|
348
|
+
loader: require.resolve('webpack-obfuscator/dist/loader'),
|
|
349
|
+
options: obfuscatorOptions
|
|
350
|
+
}
|
|
351
|
+
});
|
|
352
|
+
} else if (obfuscateLevel === 1) {
|
|
353
|
+
console.log('Obfuscation level: 1 (terser-only)');
|
|
354
|
+
} else {
|
|
355
|
+
console.log('Obfuscation level: 0 (no minimize/obfuscate)');
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
// Adikteev 需要单独提取 CSS 为 style.css,替换默认的 style-loader
|
|
359
|
+
if (adNetwork === 'adikteev') {
|
|
360
|
+
const cssRuleIndex = webpackConfig.module.rules.findIndex(rule =>
|
|
361
|
+
rule.test && rule.test.toString().includes('\\.css')
|
|
362
|
+
);
|
|
363
|
+
|
|
364
|
+
if (cssRuleIndex !== -1) {
|
|
365
|
+
webpackConfig.module.rules[cssRuleIndex] = {
|
|
366
|
+
test: /\.css$/,
|
|
367
|
+
use: [MiniCssExtractPlugin.loader, 'css-loader']
|
|
368
|
+
};
|
|
369
|
+
console.log('✅ Adikteev: CSS will be extracted to style.css');
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
// 决定是否内联 JS 到 HTML
|
|
374
|
+
// 以下渠道需要分离 JS 文件,不使用 HtmlInlineScriptPlugin:
|
|
375
|
+
// - mintegral: 需要独立的 JS 文件
|
|
376
|
+
// - adikteev: 需要 creative.js 上传到 CDN
|
|
377
|
+
// - bigabid: 需要 main.js 上传到 CDN
|
|
378
|
+
// - facebook (ZIP 模式): Facebook ZIP 格式需要分离文件
|
|
379
|
+
if (
|
|
380
|
+
adNetwork !== 'mintegral' &&
|
|
381
|
+
adNetwork !== 'adikteev' &&
|
|
382
|
+
adNetwork !== 'bigabid' &&
|
|
383
|
+
!(isZipOutputFinal && adNetwork === 'facebook')
|
|
384
|
+
)
|
|
385
|
+
webpackConfig.plugins.push(new HtmlInlineScriptPlugin());
|
|
386
|
+
|
|
387
|
+
// 注入渠道 SDK 插件(公共逻辑)
|
|
388
|
+
injectSDKPlugins(webpackConfig, {
|
|
389
|
+
network: adNetwork,
|
|
390
|
+
protocol: adProtocol,
|
|
391
|
+
orientation: buildOptions.orientation
|
|
392
|
+
});
|
|
393
|
+
|
|
394
|
+
if (isZipOutputFinal) {
|
|
395
|
+
if (adNetwork === 'tiktok') {
|
|
396
|
+
webpackConfig.plugins.push(
|
|
397
|
+
new CopyWebpackPlugin({
|
|
398
|
+
patterns: [{ from: path.join(__dirname, 'resources', 'tiktok-config.json'), to: 'config.json' }]
|
|
399
|
+
})
|
|
400
|
+
);
|
|
401
|
+
} else if (adNetwork === 'snapchat') {
|
|
402
|
+
const tmpConfigPath = path.join(__dirname, 'resources', 'snapchat-config.json');
|
|
403
|
+
|
|
404
|
+
webpackConfig.plugins.push(
|
|
405
|
+
new CopyWebpackPlugin({
|
|
406
|
+
patterns: [{ from: tmpConfigPath, to: 'config.json' }]
|
|
407
|
+
})
|
|
408
|
+
);
|
|
409
|
+
} else if (adNetwork === 'bigoads') {
|
|
410
|
+
// BigoAds 要求输出 ZIP 包,包含 index.html 和 config.json
|
|
411
|
+
// SDK 注入已在 injectSDKPlugins 中处理
|
|
412
|
+
webpackConfig.plugins.push(
|
|
413
|
+
new CopyWebpackPlugin({
|
|
414
|
+
patterns: [{ from: path.join(__dirname, 'resources', 'bigoads-config.json'), to: 'config.json' }]
|
|
415
|
+
})
|
|
416
|
+
);
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
webpackConfig.plugins.push(
|
|
420
|
+
new ZipPlugin({
|
|
421
|
+
filename: isChannelFold2Zip ? adNetwork : getFileName(),
|
|
422
|
+
path: path.resolve(outDir),
|
|
423
|
+
cleanTempFolder: true // 🗑️ 生成 zip 后删除临时文件夹
|
|
424
|
+
})
|
|
425
|
+
);
|
|
426
|
+
|
|
427
|
+
webpackConfig.output.path = path.resolve(outDir, adNetwork);
|
|
428
|
+
if (adNetwork === 'adikteev') {
|
|
429
|
+
webpackConfig.output.filename = 'creative.js';
|
|
430
|
+
// Adikteev 需要将 CSS 单独提取为 style.css 文件
|
|
431
|
+
webpackConfig.plugins.push(
|
|
432
|
+
new MiniCssExtractPlugin({
|
|
433
|
+
filename: 'style.css'
|
|
434
|
+
})
|
|
435
|
+
);
|
|
436
|
+
} else if (adNetwork === 'bigabid') webpackConfig.output.filename = 'main.js';
|
|
437
|
+
else if (adNetwork === 'inmobi') webpackConfig.output.filename = 'main.js';
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
// 添加 fflate 压缩插件(仅在打正式包时生效)
|
|
441
|
+
if (buildOptions.fflateCompression) {
|
|
442
|
+
console.log('✅ fflate compression enabled (production build only)');
|
|
443
|
+
webpackConfig.plugins.push(
|
|
444
|
+
new FflateCompressionPlugin({
|
|
445
|
+
enabled: true,
|
|
446
|
+
level: 9,
|
|
447
|
+
keepOriginal: false,
|
|
448
|
+
logStats: true,
|
|
449
|
+
googlePlayUrl: buildOptions.googlePlayUrl,
|
|
450
|
+
appStoreUrl: buildOptions.appStoreUrl,
|
|
451
|
+
})
|
|
452
|
+
);
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
return webpackConfig;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
/**
|
|
55
459
|
* Runs webpack production build
|
|
56
460
|
* @param {import('webpack').Configuration} [webpackConfig] - Webpack configuration to use, creates default if not provided
|
|
57
461
|
* @param {Partial<import('./index').CLIOptions>} [customOptions] - Custom options to merge with default options
|
|
58
462
|
* @param {Record<string, any>} [customDefines] - Additional defines for webpack.DefinePlugin
|
|
59
463
|
* @param {import('webpack').Configuration} [webpackCustomConfig] - Custom webpack config to merge
|
|
60
|
-
*/
|
|
61
|
-
|
|
62
|
-
|
|
464
|
+
*/
|
|
465
|
+
function runBuild(webpackConfig, customOptions, customDefines, webpackCustomConfig) {
|
|
466
|
+
return new Promise((resolve, reject) => {
|
|
467
|
+
if (!webpackConfig) webpackConfig = makeWebpackBuildConfig(customOptions, customDefines, webpackCustomConfig);
|
|
468
|
+
|
|
469
|
+
const compiler = webpack(webpackConfig);
|
|
470
|
+
compiler.run((err, stats) => {
|
|
471
|
+
if (err) {
|
|
472
|
+
console.error('Build failed:', err.stack || err);
|
|
473
|
+
if (err.details) {
|
|
474
|
+
console.error('Error details:', err.details);
|
|
475
|
+
}
|
|
476
|
+
return reject(err);
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
if (stats.hasErrors()) {
|
|
480
|
+
const errors = stats.compilation.errors;
|
|
481
|
+
console.error(`\n❌ Build finished with ${errors.length} error(s):\n`);
|
|
482
|
+
|
|
483
|
+
// 打印每个错误的详细信息
|
|
484
|
+
errors.forEach((error, index) => {
|
|
485
|
+
console.error(`\n[Error ${index + 1}/${errors.length}]`);
|
|
486
|
+
console.error(error.message || error);
|
|
487
|
+
if (error.stack) {
|
|
488
|
+
console.error(error.stack);
|
|
489
|
+
}
|
|
490
|
+
});
|
|
491
|
+
|
|
492
|
+
// 拒绝 Promise 时传递格式化的错误消息
|
|
493
|
+
const errorMessage = errors.map((e, i) => `[${i + 1}] ${e.message || e}`).join('\n');
|
|
494
|
+
reject(new Error(`Webpack build failed with ${errors.length} error(s):\n${errorMessage}`));
|
|
495
|
+
} else {
|
|
496
|
+
console.log(`Build successful!`);
|
|
497
|
+
resolve();
|
|
498
|
+
}
|
|
499
|
+
});
|
|
500
|
+
});
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
exports.makeWebpackBuildConfig = makeWebpackBuildConfig;
|
|
504
|
+
exports.runBuild = runBuild;
|