cocos-enhance-kit/engine/gulpfile.js

208 lines
7.1 KiB
JavaScript
Raw Permalink Normal View History

2022-06-24 16:23:03 +00:00
/****************************************************************************
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
https://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.
****************************************************************************/
'use strict';
const Path = require('path');
const gulp = require('gulp');
const Del = require('del');
const Shell = require('gulp-shell');
const Engine = require('./gulp/tasks/engine');
const Test = require('./gulp/tasks/test');
const Watch = require('./gulp/tasks/watch');
////////////
// global //
////////////
gulp.task('clean-cache', function cleanCache() {
return Del(['./bin/.cache/*', '!./bin/.cache/dev/**']);
});
gulp.task('build-debug-infos', function buildDebugInfos(done) {
Engine.buildDebugInfos();
done();
});
gulp.task('clean', function () {
return Del('./bin/**/*');
});
gulp.task('clean-cache-dev', function cleanCacheDev() {
return Del([
'./bin/.cache/dev',
'./cocos2d/core/platform/deserialize-compiled.js',
'./cocos2d/core/value-types/*.js'
]);
});
////////////
// watch //
////////////
gulp.task('watch-preview', function watchPreview() {
Watch.preview('./index.js', './bin/cocos2d-js-for-preview.js');
});
gulp.task('watch-jsb-polyfill', function watchJsbPolyfill() {
Watch.jsbPolyfill([
'./index.js',
], './bin/cocos2d-jsb.js');
});
gulp.task('watch-dev-files', gulp.parallel('watch-preview', 'watch-jsb-polyfill'));
/////////////
// engine //
/////////////
gulp.task('build-jsb-dev', gulp.series(gulp.parallel('clean-cache', 'build-debug-infos'), function buildJsbDev(done) {
var args = process.argv.slice(3); // strip task name
var opts = {};
if (args.indexOf('--native-renderer') !== -1) {
opts.nativeRenderer = true;
}
Engine.buildJsb([
'./index.js',
], './bin/cocos2d-jsb.js', [], opts, done);
}));
gulp.task('build-jsb-min', gulp.series(gulp.parallel('clean-cache', 'build-debug-infos'), function buildJsbMin(done) {
var args = process.argv.slice(3); // strip task name
var opts = {};
if (args.indexOf('--native-renderer') !== -1) {
opts.nativeRenderer = true;
}
Engine.buildJsbMin([
'./index.js',
], './bin/cocos2d-jsb-min.js', [], opts, done);
}));
gulp.task('build-jsb-preview', gulp.series('build-debug-infos', function buildJsbPreview(done) {
Engine.buildJsbPreview([
'./index.js',
], './bin/cocos2d-jsb-for-preview.js', [], done);
}));
gulp.task('build-jsb', gulp.parallel('build-jsb-preview', 'build-jsb-dev', 'build-jsb-min'));
/////////
// test //
/////////
gulp.task('clean-test-cases', function cleanTestCases() {
return Del('./bin/test/**/*');
});
gulp.task('clean-test', gulp.series('clean-test-cases', function cleanTest() {
return Del([
'./bin/cocos2d-js-extends-for-test.js',
'./bin/cocos2d-js-for-test.js',
]);
}));
gulp.task('build-test-cases', gulp.series('clean-test-cases', function buildTestCase(done) {
Test.buildTestCase('./bin/test/', done);
}));
gulp.task('build-test', gulp.series(gulp.parallel('clean-test', 'build-test-cases', 'build-debug-infos'), function buildTest(done) {
Test.build('./index.js', './bin/cocos2d-js-for-test.js',
'../editor/test-utils/engine-extends-entry.js', './bin/cocos2d-js-extends-for-test.js',
false, done);
}));
gulp.task('build-test-sm', gulp.series(gulp.parallel('clean-test', 'build-test-cases', 'build-debug-infos'), function buildTestSM(done) {
Test.build('./index.js', './bin/cocos2d-js-for-test.js',
'../editor/test-utils/engine-extends-entry.js', './bin/cocos2d-js-extends-for-test.js',
true, done);
}));
gulp.task('unit-runner', gulp.series('build-test', function unitRunner(done) {
Test.unit('./bin', [
'./bin/cocos2d-js-for-test.js'
], done);
}));
gulp.task('test', gulp.series(gulp.parallel('build-test', 'unit-runner'), function test(done) {
Test.test(done);
}));
gulp.task('test-no-build', gulp.series('build-test-cases', function testNoBuild(done) {
Test.test(done);
}));
gulp.task('test-in-ci', function testInCi(done) {
const { spawn } = require('child_process');
var gulp = process.platform === 'win32' ? 'gulp.cmd' : 'gulp';
var child = spawn(gulp, ['test'], {
stdio: [0, 'pipe', 2]
});
child.stdout.on('data', function (data) {
process.stdout.write(data);
if (data.toString().indexOf(' assertions failed ') !== -1) {
process.exitCode = 1;
process.exit();
}
done();
});
});
gulp.task('visual-test', gulp.series('build-test', Shell.task([
'sh ./test/visual-tests/run.sh'
])));
gulp.task('build-html5-dev', gulp.series(gulp.parallel('clean-cache', 'build-debug-infos'), function buildHtml5Dev(done) {
Engine.buildCocosJs('./index.js', './bin/cocos2d-js.js', [], done);
}));
gulp.task('build-html5-min', gulp.series(gulp.parallel('clean-cache', 'build-debug-infos'), function buildHtml5Min(done) {
Engine.buildCocosJsMin('./index.js', './bin/cocos2d-js-min.js', [], done);
}));
gulp.task('build-html5-preview', gulp.series('build-debug-infos', function buildHtml5Preview(done) {
Engine.buildPreview('./index.js', './bin/cocos2d-js-for-preview.js', done);
}));
gulp.task('build-html5-preview-dev', gulp.series('build-debug-infos', function buildHtml5PreviewDev(done) {
Engine.buildPreview('./index.js', './bin/cocos2d-js-for-preview.js', done, true);
}));
gulp.task('build-html5', gulp.parallel('build-html5-preview', 'build-html5-dev', 'build-html5-min'));
// fast build, only for develop
gulp.task('build-dev', gulp.series(gulp.parallel('clean-cache', 'build-html5-preview', 'build-jsb-preview'), function buildDev() {
return Del(['./bin/cocos2d-jsb-min.js', './bin/cocos2d-jsb.js']);
}));
// only build preview for html5 since it will built by editor
gulp.task('build', gulp.parallel('clean-cache', 'build-html5-preview', 'build-jsb'));
// default task
gulp.task('default', gulp.series('build'));