10 Star 88 Fork 16

Cocos/cocos-engine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gulpfile.js 4.61 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd.
http://www.cocos.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated engine source code (the "Software"), a limited,
worldwide, royalty-free, non-assignable, revocable and non-exclusive license
to use Cocos Creator solely to develop games on your target platforms. You shall
not use Cocos Creator software for developing other software or tools that's
used for developing games. You are not granted to publish, distribute,
sublicense, and/or sell copies of Cocos Creator.
The software or tools in this License Agreement are licensed, not sold.
Xiamen Yaji Software Co., Ltd. reserves all rights not expressly granted to you.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
/* eslint-disable @typescript-eslint/no-require-imports */
/* eslint-disable @typescript-eslint/no-var-requires */
'use strict';
const gulp = require('gulp');
const fs = require('fs-extra');
const ps = require('path');
const cp = require('child_process');
gulp.task('build-debug-infos', async () => {
return await Promise.resolve(require('./gulp/tasks/buildDebugInfos')());
});
gulp.task('build-source', async () => {
const cli = require.resolve('@cocos/build-engine/dist/cli');
return cp.spawn('node', [
cli,
`--engine=${__dirname}`,
'--module=system',
...process.argv.slice(3),
], {
shell: true,
stdio: 'inherit',
cwd: __dirname,
});
});
gulp.task('build-h5-source', gulp.series('build-debug-infos', async () => {
const outDir = ps.join('bin', 'dev', 'cc');
await fs.ensureDir(outDir);
await fs.emptyDir(outDir);
const cli = require.resolve('@cocos/build-engine/dist/cli');
const exitCode = await new Promise((resolve, reject) => {
cp.spawn('node', [
cli,
`--engine=${__dirname}`,
'--module=system',
'--build-mode=BUILD',
'--platform=HTML5',
'--physics=cannon',
`--out=${outDir}`,
], {
shell: true,
stdio: 'inherit',
cwd: __dirname,
}).on('exit', (code) => {
resolve(code);
}).on('error', (err) => {
reject(err);
});
});
if (exitCode) {
throw new Error(`Build process exit with ${exitCode}`);
}
}));
gulp.task('build-h5-minified', gulp.series('build-debug-infos', async () => {
const outDir = ps.join('bin', 'dev', 'cc-min');
await fs.ensureDir(outDir);
await fs.emptyDir(outDir);
const cli = require.resolve('@cocos/build-engine/dist/cli');
return cp.spawn('node', [
cli,
`--engine=${__dirname}`,
'--module=system',
'--compress',
'--sourcemap',
'--build-mode=BUILD',
'--platform=HTML5',
'--physics=cannon',
`--out=${outDir}`,
], {
shell: true,
stdio: 'inherit',
cwd: __dirname,
});
}));
gulp.task('build-declarations', async () => {
const outDir = ps.join('bin', '.declarations');
const { build } = require('@cocos/build-engine/dist/build-declarations');
await fs.emptyDir(outDir);
return await build({
engine: __dirname,
outDir,
withIndex: true,
withExports: false,
withEditorExports: true,
});
});
gulp.task('build', gulp.parallel('build-h5-minified', 'build-debug-infos', 'build-declarations'));
gulp.task('code-check', () => {
return cp.spawn('npx', ['tsc', '--noEmit'], {
shell: true,
stdio: 'inherit',
cwd: __dirname,
});
});
gulp.task('unit-tests', () => {
return cp.spawn('npx', ['jest'], {
shell: true,
stdio: 'inherit',
cwd: __dirname,
});
});
gulp.task('test', gulp.series('code-check', 'unit-tests'));
gulp.task('build-api-json', async () => {
const APIBuilder = require('./gulp/util/api-docs-build');
return await Promise.resolve(APIBuilder.generateJson());
});
gulp.task('build-3d-api', async () => {
const APIBuilder = require('./gulp/util/api-docs-build');
return await Promise.resolve(APIBuilder.generateHTMLWithLocalization());
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cocos/cocos-engine.git
git@gitee.com:cocos/cocos-engine.git
cocos
cocos-engine
cocos-engine
develop

搜索帮助