feat: add script direct export all package
parent
fbb5964caf
commit
9b50a4f415
|
@ -69,7 +69,10 @@ zip文件的默认打包方式,是根据以下不同渠道操作后,将web-m
|
||||||
`
|
`
|
||||||
|
|
||||||
## 3.渠道处理
|
## 3.渠道处理
|
||||||
### applovin, unity, liftoff, appier
|
### applovin
|
||||||
|
unity
|
||||||
|
(zip) liftoff
|
||||||
|
appier
|
||||||
1. 把networks/mraid_support.js 复制到web-mobile下
|
1. 把networks/mraid_support.js 复制到web-mobile下
|
||||||
2. 编辑复制的mraid_support.js, 在前几行填入对应的iosUrl和androidUrl
|
2. 编辑复制的mraid_support.js, 在前几行填入对应的iosUrl和androidUrl
|
||||||
3. 编辑index.html,在body最后加上
|
3. 编辑index.html,在body最后加上
|
||||||
|
|
|
@ -0,0 +1,121 @@
|
||||||
|
const fs = require("fs");
|
||||||
|
const path = require("path");
|
||||||
|
const do_task = require("./single-html/build");
|
||||||
|
|
||||||
|
const outputPrefix = '';
|
||||||
|
const htmlChannel = ['applovin', 'unity', 'appier', 'ironsource', 'mintegral', 'moloco'];
|
||||||
|
|
||||||
|
// 延时函数
|
||||||
|
function delay(ms) {
|
||||||
|
return new Promise(resolve => setTimeout(resolve, ms));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建 dist 目录
|
||||||
|
if (!fs.existsSync('dist')) {
|
||||||
|
fs.mkdirSync('dist');
|
||||||
|
}
|
||||||
|
|
||||||
|
// 处理 HTML 渠道
|
||||||
|
async function processHtmlChannels() {
|
||||||
|
for (const channelName of htmlChannel) {
|
||||||
|
// 删除所有可能存在的旧文件
|
||||||
|
const filesToDelete = ['mraid_support.js', 'mraid.js', 'mintegral.js', 'moloco.js'];
|
||||||
|
filesToDelete.forEach(file => {
|
||||||
|
const filePath = path.join('web-mobile', file);
|
||||||
|
if (fs.existsSync(filePath)) {
|
||||||
|
fs.unlinkSync(filePath);
|
||||||
|
console.log(`已删除: ${filePath}`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 从 networks 找到复制到 web-mobile 中
|
||||||
|
const mraidSupportFile = path.join('networks', 'mraid_support.js');
|
||||||
|
const mraidDestinationFile = path.join('web-mobile', 'mraid_support.js');
|
||||||
|
|
||||||
|
if (['applovin', 'unity', 'appier', 'ironsource'].includes(channelName)) {
|
||||||
|
if (fs.existsSync(mraidSupportFile)) {
|
||||||
|
fs.copyFileSync(mraidSupportFile, mraidDestinationFile);
|
||||||
|
console.log(`已复制: ${mraidSupportFile} 到 ${mraidDestinationFile}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (['mintegral', 'moloco'].includes(channelName)) {
|
||||||
|
const fileName = `${channelName}.js`;
|
||||||
|
const sourceFile = path.join('networks', fileName);
|
||||||
|
const destFile = path.join('web-mobile', fileName);
|
||||||
|
if (fs.existsSync(sourceFile)) {
|
||||||
|
fs.copyFileSync(sourceFile, destFile);
|
||||||
|
console.log(`已复制: ${sourceFile} 到 ${destFile}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const htmlFilePath = path.join('web-mobile', 'index.html');
|
||||||
|
let htmlContent = fs.readFileSync(htmlFilePath, 'utf-8');
|
||||||
|
|
||||||
|
// 移除非当前渠道包的 <script> 标签
|
||||||
|
htmlChannel.forEach(channel => {
|
||||||
|
if (channel !== channelName) {
|
||||||
|
const scriptRegex = new RegExp(`<script src="${channel}.js" charset="utf-8"></script>\\n`, 'g');
|
||||||
|
htmlContent = htmlContent.replace(scriptRegex, '');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 移除 mraid_support.js 和 mraid.js 的 <script> 标签
|
||||||
|
htmlContent = htmlContent.replace(/<script src="mraid_support.js" charset="utf-8"><\/script>\n/g, '');
|
||||||
|
htmlContent = htmlContent.replace(/<script src="mraid.js"><\/script>\n/g, '');
|
||||||
|
|
||||||
|
// 检查并插入新的渠道 script 标签
|
||||||
|
let channelScriptTag;
|
||||||
|
if (['applovin', 'unity', 'appier', 'ironsource'].includes(channelName)) {
|
||||||
|
channelScriptTag = ` <script src="mraid_support.js" charset="utf-8"></script>\n`;
|
||||||
|
} else {
|
||||||
|
channelScriptTag = ` <script src="${channelName}.js" charset="utf-8"></script>\n`;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!htmlContent.includes(channelScriptTag)) {
|
||||||
|
htmlContent = htmlContent.replace(/<\/head>/, `${channelScriptTag}</head>`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 替换包含 window.vConsole = new VConsole 的 <script> 标签
|
||||||
|
const vConsoleScriptRegex = /<script type="text\/javascript">[\s\S]*?window\.vConsole = new VConsole\(\);[\s\S]*?<\/script>/;
|
||||||
|
const cocosScriptTag = `<script src="cocos2d-js-min.ce58b.js" charset="utf-8"></script>\n`;
|
||||||
|
htmlContent = htmlContent.replace(vConsoleScriptRegex, cocosScriptTag);
|
||||||
|
|
||||||
|
// 额外引入 loader-and-starter.js 和 asset-map.js 到 body 中
|
||||||
|
const loaderScriptTag = `<script src="loader-and-starter.js" charset="utf-8"></script>\n`;
|
||||||
|
const assetMapScriptTag = `<script src="asset-map.js" charset="utf-8"></script>\n`;
|
||||||
|
const bodyScriptTags = `${cocosScriptTag}${loaderScriptTag}${assetMapScriptTag}`;
|
||||||
|
|
||||||
|
if (!htmlContent.includes(loaderScriptTag) && !htmlContent.includes(assetMapScriptTag)) {
|
||||||
|
htmlContent = htmlContent.replace(cocosScriptTag, bodyScriptTags);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 移除单渠道的 SDK script 标签
|
||||||
|
const sdkScriptTag = `<script src="https://sf16-muse-va.ibytedtos.com/obj/union-fe-nc-i18n/playable/sdk/playable-sdk.js"></script>\n`;
|
||||||
|
htmlContent = htmlContent.replace(sdkScriptTag, '');
|
||||||
|
|
||||||
|
fs.writeFileSync(htmlFilePath, htmlContent);
|
||||||
|
console.log(`已将 ${channelName}.js 和相关 script 引入到 index.html 中`);
|
||||||
|
|
||||||
|
// 调用 do_task 方法,将 web-mobile 下的所有包打包成一个 HTML
|
||||||
|
do_task();
|
||||||
|
|
||||||
|
// 如果是 ironsource 渠道,将 <script src="mraid.js"></script> 插入到 body 标签之前
|
||||||
|
if (channelName === 'ironsource') {
|
||||||
|
htmlContent = fs.readFileSync(path.join('dist', 'index.html'), 'utf-8');
|
||||||
|
htmlContent = htmlContent.replace(/<\/body>/, `<script src="mraid.js"></script></body>`);
|
||||||
|
fs.writeFileSync(path.join('dist', 'index.html'), htmlContent);
|
||||||
|
console.log(`已将 <script src="mraid.js"></script> 写入到 ironsource.html 的 body 标签之前`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 重命名生成的 index.html 为对应的渠道名称
|
||||||
|
const distIndexPath = path.join('dist', 'index.html');
|
||||||
|
const channelIndexPath = path.join('dist', `${outputPrefix}${channelName}.html`);
|
||||||
|
if (fs.existsSync(distIndexPath)) {
|
||||||
|
fs.renameSync(distIndexPath, channelIndexPath);
|
||||||
|
console.log(`已重命名 index.html 为 ${channelName}.html`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
processHtmlChannels();
|
|
@ -1,6 +1,6 @@
|
||||||
// 填入对应的商店地址
|
// 填入对应的商店地址
|
||||||
var iosUrl = ""
|
var iosUrl = "https://play.google.com/store/apps/details?id=com.wwv.global"
|
||||||
var androidUrl = ""
|
var androidUrl = "https://apps.apple.com/app/id6621220868"
|
||||||
|
|
||||||
|
|
||||||
class SoyooLifecyle {
|
class SoyooLifecyle {
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,12 +1,16 @@
|
||||||
{
|
{
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "node single-html/build.js"
|
"build": "node single-html/build.js",
|
||||||
|
"build:zip": "node zipChannelScript.js",
|
||||||
|
"build:h5": "node htmlChannelScript.js",
|
||||||
|
"build:allChannels": "npm run build:zip && npm run build:h5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"clean-css": "^5.3.3",
|
"clean-css": "^5.3.3",
|
||||||
"uglify-js": "^3.19.3"
|
"uglify-js": "^3.19.3"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"archiver": "^7.0.1",
|
||||||
"brotli": "^1.3.3"
|
"brotli": "^1.3.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -129,4 +129,5 @@ function do_task() {
|
||||||
console.timeEnd("输出html文件")
|
console.timeEnd("输出html文件")
|
||||||
}
|
}
|
||||||
|
|
||||||
do_task()
|
// 导出
|
||||||
|
module.exports = do_task
|
||||||
|
|
|
@ -0,0 +1,127 @@
|
||||||
|
const fs = require("fs");
|
||||||
|
const path = require("path");
|
||||||
|
const archiver = require("archiver");
|
||||||
|
|
||||||
|
const zipChannel = ['facebook', 'google', 'tiktok', 'vungle', 'liftoff'];
|
||||||
|
|
||||||
|
// 延时函数
|
||||||
|
function delay(ms) {
|
||||||
|
return new Promise(resolve => setTimeout(resolve, ms));
|
||||||
|
}
|
||||||
|
|
||||||
|
const outputPrefix = '';
|
||||||
|
|
||||||
|
// 创建 dist 目录
|
||||||
|
if (!fs.existsSync('dist')) {
|
||||||
|
fs.mkdirSync('dist');
|
||||||
|
}
|
||||||
|
|
||||||
|
// 1. 将js复制到web-mobile中
|
||||||
|
async function processChannels() {
|
||||||
|
for (const channelName of zipChannel) {
|
||||||
|
// 遍历 networks 目录下的所有js文件,获取 文件名 然后删除 web-mobile 目录下的同名文件
|
||||||
|
const files = fs.readdirSync(path.join('networks'));
|
||||||
|
for (const file of files) {
|
||||||
|
if (file.endsWith('.js')) {
|
||||||
|
const destinationFile = path.join('web-mobile', file);
|
||||||
|
if (fs.existsSync(destinationFile)) {
|
||||||
|
fs.unlinkSync(destinationFile);
|
||||||
|
console.log(`已删除: ${destinationFile}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// tiktok 处理
|
||||||
|
const tiktokConfig = path.join('web-mobile', `config.json`);
|
||||||
|
if (fs.existsSync(tiktokConfig)) {
|
||||||
|
fs.unlinkSync(tiktokConfig);
|
||||||
|
}
|
||||||
|
const tiktokJs = path.join('web-mobile', `tiktok.js`);
|
||||||
|
if (fs.existsSync(tiktokJs)) {
|
||||||
|
fs.unlinkSync(tiktokJs);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 从 networks 找到复制到 web-mobile 中
|
||||||
|
const sourceFile = path.join('networks', `${channelName}.js`);
|
||||||
|
const destinationFile = path.join('web-mobile', `${channelName}.js`);
|
||||||
|
|
||||||
|
if (channelName === 'tiktok') {
|
||||||
|
fs.copyFileSync(path.join('tiktok/config.json'), path.join('web-mobile', `config.json`));
|
||||||
|
fs.copyFileSync(path.join('tiktok/tiktok.js'), path.join('web-mobile', `tiktok.js`));
|
||||||
|
} else if (channelName === 'vungle' || channelName === 'liftoff') {
|
||||||
|
// 对于 vungle 和 liftoff,使用 mraid_support.js
|
||||||
|
const mraidSupportFile = path.join('networks', 'mraid_support.js');
|
||||||
|
const mraidDestinationFile = path.join('web-mobile', 'mraid_support.js');
|
||||||
|
if (fs.existsSync(mraidSupportFile)) {
|
||||||
|
fs.copyFileSync(mraidSupportFile, mraidDestinationFile);
|
||||||
|
console.log(`已复制: ${mraidSupportFile} 到 ${mraidDestinationFile}`);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (fs.existsSync(sourceFile)) {
|
||||||
|
fs.copyFileSync(sourceFile, destinationFile);
|
||||||
|
console.log(`已复制: ${sourceFile} 到 ${destinationFile}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const htmlFilePath = path.join('web-mobile', 'index.html');
|
||||||
|
let htmlContent = fs.readFileSync(htmlFilePath, 'utf-8');
|
||||||
|
|
||||||
|
// 移除其他渠道包的 <script> 标签
|
||||||
|
zipChannel.forEach(channel => {
|
||||||
|
const scriptRegex = new RegExp(`<script src="${channel}.js" charset="utf-8"></script>\\n`, 'g');
|
||||||
|
htmlContent = htmlContent.replace(scriptRegex, '');
|
||||||
|
});
|
||||||
|
|
||||||
|
// 移除所有渠道的 <meta> 标签
|
||||||
|
const metaTagRegex = /<meta name="ad.size" content="width=480,height=320">\n/g;
|
||||||
|
htmlContent = htmlContent.replace(metaTagRegex, '');
|
||||||
|
|
||||||
|
// 检查并插入新的渠道 script 标签
|
||||||
|
let channelScriptTag;
|
||||||
|
if (channelName === 'vungle' || channelName === 'liftoff') {
|
||||||
|
channelScriptTag = ` <script src="mraid_support.js" charset="utf-8"></script>\n`;
|
||||||
|
} else {
|
||||||
|
channelScriptTag = ` <script src="${channelName}.js" charset="utf-8"></script>\n`;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!htmlContent.includes(channelScriptTag)) {
|
||||||
|
htmlContent = htmlContent.replace(/<\/head>/, `${channelScriptTag}</head>`);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果是 google 渠道,添加 <meta> 标签
|
||||||
|
if (channelName === 'google') {
|
||||||
|
const metaTag = `<meta name="ad.size" content="width=480,height=320">\n`;
|
||||||
|
if (!htmlContent.includes(metaTag)) {
|
||||||
|
htmlContent = htmlContent.replace(/<\/head>/, `${metaTag}</head>`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 检查并插入新的 SDK script 标签到 <body> 之前
|
||||||
|
const sdkScriptTag = `<script src="https://sf16-muse-va.ibytedtos.com/obj/union-fe-nc-i18n/playable/sdk/playable-sdk.js"></script>\n`;
|
||||||
|
if (!htmlContent.includes(sdkScriptTag)) {
|
||||||
|
htmlContent = htmlContent.replace(/<\/body>/, `${sdkScriptTag}</body>`);
|
||||||
|
}
|
||||||
|
|
||||||
|
fs.writeFileSync(htmlFilePath, htmlContent);
|
||||||
|
console.log(`已将 ${channelName}.js 和 SDK script 引入到 index.html 中`);
|
||||||
|
|
||||||
|
// 打包 web-mobile 目录为 zip 文件
|
||||||
|
const output = fs.createWriteStream(path.join('dist', `${outputPrefix}${channelName}.zip`));
|
||||||
|
const archive = archiver('zip', {
|
||||||
|
zlib: { level: 9 } // 设置压缩级别
|
||||||
|
});
|
||||||
|
|
||||||
|
output.on('close', function() {
|
||||||
|
console.log(`已创建 ${channelName}.zip,大小为 ${archive.pointer()} 字节`);
|
||||||
|
});
|
||||||
|
|
||||||
|
archive.on('error', function(err) {
|
||||||
|
throw err;
|
||||||
|
});
|
||||||
|
|
||||||
|
archive.pipe(output);
|
||||||
|
archive.directory('web-mobile/', false);
|
||||||
|
await archive.finalize();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
processChannels();
|
Loading…
Reference in New Issue