layaair-example
This commit is contained in:
118
examples/layaair/frontend/.laya/publish_youkugame.js
Normal file
118
examples/layaair/frontend/.laya/publish_youkugame.js
Normal file
@@ -0,0 +1,118 @@
|
||||
// v1.0.0
|
||||
const ideModuleDir = global.ideModuleDir;
|
||||
const workSpaceDir = global.workSpaceDir;
|
||||
|
||||
//引用插件模块
|
||||
const gulp = require(ideModuleDir + "gulp");
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
const revCollector = require(ideModuleDir + 'gulp-rev-collector');
|
||||
|
||||
let copyLibsTask = ["copyPlatformLibsJsFile"];
|
||||
let versiontask = ["version2"];
|
||||
|
||||
let
|
||||
config,
|
||||
releaseDir;
|
||||
let versionCon; // 版本管理version.json
|
||||
let commandSuffix,
|
||||
layarepublicPath;
|
||||
|
||||
gulp.task("preCreate_youku", copyLibsTask, function() {
|
||||
releaseDir = global.releaseDir;
|
||||
config = global.config;
|
||||
commandSuffix = global.commandSuffix;
|
||||
layarepublicPath = global.layarepublicPath;
|
||||
});
|
||||
|
||||
gulp.task("copyPlatformFile_youku", ["preCreate_youku"], function() {
|
||||
let adapterPath = path.join(layarepublicPath, "LayaAirProjectPack", "lib", "data", "youkufiles");
|
||||
let hasPublishPlatform =
|
||||
fs.existsSync(path.join(releaseDir, "game.js")) &&
|
||||
fs.existsSync(path.join(releaseDir, "game.json")) &&
|
||||
fs.existsSync(path.join(releaseDir, "project.config.json"));
|
||||
let copyLibsList;
|
||||
if (hasPublishPlatform) {
|
||||
copyLibsList = [`${adapterPath}/my-adapter.js`];
|
||||
} else {
|
||||
copyLibsList = [`${adapterPath}/*.*`];
|
||||
}
|
||||
var stream = gulp.src(copyLibsList);
|
||||
return stream.pipe(gulp.dest(releaseDir));
|
||||
});
|
||||
|
||||
gulp.task("modifyFile_youku", versiontask, function() {
|
||||
// 修改game.json文件
|
||||
let gameJsonPath = path.join(releaseDir, "game.json");
|
||||
let content = fs.readFileSync(gameJsonPath, "utf8");
|
||||
let conJson = JSON.parse(content);
|
||||
conJson.screenOrientation = config.youkuInfo.orientation;
|
||||
content = JSON.stringify(conJson, null, 4);
|
||||
fs.writeFileSync(gameJsonPath, content, "utf8");
|
||||
|
||||
// 修改game.js
|
||||
let filePath = path.join(releaseDir, "game.js");
|
||||
let fileContent = fs.existsSync(filePath) && fs.readFileSync(filePath, "utf8");
|
||||
let reWriteMainJs = !fs.existsSync(filePath) || !fileContent.includes("ykmini");
|
||||
if (reWriteMainJs) {
|
||||
fileContent = `window.navigator.userAgent += " youku";
|
||||
require("./my-adapter.js");
|
||||
require("./libs/laya.ykmini.js");\nrequire("./index.js");`;
|
||||
fs.writeFileSync(filePath, fileContent, "utf8");
|
||||
}
|
||||
|
||||
if (config.version || config.enableVersion) {
|
||||
let versionPath = releaseDir + "/version.json";
|
||||
versionCon = fs.readFileSync(versionPath, "utf8");
|
||||
versionCon = JSON.parse(versionCon);
|
||||
}
|
||||
// 修改index.js
|
||||
let indexJsStr = (versionCon && versionCon["index.js"]) ? versionCon["index.js"] : "index.js";
|
||||
let indexFilePath = path.join(releaseDir, indexJsStr);
|
||||
if (!fs.existsSync(indexFilePath)) {
|
||||
return;
|
||||
}
|
||||
let indexFileContent = fs.readFileSync(indexFilePath, "utf8");
|
||||
indexFileContent = indexFileContent.replace(/loadLib(\(['"])/gm, "require$1./");
|
||||
fs.writeFileSync(indexFilePath, indexFileContent, "utf8");
|
||||
})
|
||||
|
||||
gulp.task("modifyMinJs_youku", ["modifyFile_youku"], function() {
|
||||
// 如果保留了平台文件,如果同时取消使用min类库,就会出现文件引用不正确的问题
|
||||
if (config.keepPlatformFile) {
|
||||
let fileJsPath = path.join(releaseDir, "game.js");
|
||||
let content = fs.readFileSync(fileJsPath, "utf-8");
|
||||
content = content.replace(/min\/laya(-[\w\d]+)?\.ykmini\.min\.js/gm, "laya.ykmini.js");
|
||||
fs.writeFileSync(fileJsPath, content, 'utf-8');
|
||||
}
|
||||
if (!config.useMinJsLibs) {
|
||||
return;
|
||||
}
|
||||
let fileJsPath = path.join(releaseDir, "game.js");
|
||||
let content = fs.readFileSync(fileJsPath, "utf-8");
|
||||
content = content.replace(/(min\/)?laya(-[\w\d]+)?\.ykmini(\.min)?\.js/gm, "min/laya.ykmini.min.js");
|
||||
fs.writeFileSync(fileJsPath, content, 'utf-8');
|
||||
});
|
||||
|
||||
gulp.task("version_youku", ["modifyMinJs_youku"], function () {
|
||||
// 如果保留了平台文件,如果同时开启版本管理,就会出现文件引用不正确的问题
|
||||
if (config.keepPlatformFile) {
|
||||
let fileJsPath = path.join(releaseDir, "game.js");
|
||||
let content = fs.readFileSync(fileJsPath, "utf-8");
|
||||
content = content.replace(/laya(-[\w\d]+)?\.ykmini/gm, "laya.ykmini");
|
||||
content = content.replace(/index(-[\w\d]+)?\.js/gm, "index.js");
|
||||
fs.writeFileSync(fileJsPath, content, 'utf-8');
|
||||
}
|
||||
if (config.version) {
|
||||
let versionPath = releaseDir + "/version.json";
|
||||
let gameJSPath = releaseDir + "/game.js";
|
||||
let srcList = [versionPath, gameJSPath];
|
||||
return gulp.src(srcList)
|
||||
.pipe(revCollector())
|
||||
.pipe(gulp.dest(releaseDir));
|
||||
}
|
||||
});
|
||||
|
||||
gulp.task("buildYKProj", ["version_youku"], function() {
|
||||
console.log("all tasks completed");
|
||||
});
|
||||
Reference in New Issue
Block a user