[common] add dota levels

This commit is contained in:
2019-03-27 17:39:41 +03:00
parent 404dd77806
commit 121c470b00
23 changed files with 78 additions and 25 deletions

View File

@@ -91,6 +91,7 @@ const editor = new Project(
Project.BuildSystem.OPENFL,
[
Project.Platform.FLASH,
Project.Platform.HTML5,
],
config.branch({
name: 'editor',
@@ -103,7 +104,7 @@ const editor = new Project(
meta: {
filename: 'editor',
width: 1024,
height: 800,
height: 850,
},
flags: [
//'dev_layout',
@@ -130,12 +131,15 @@ const server = new Project(
module.exports.default = gulp.series(
exports.clean,
module.exports['client:flash:build'],
module.exports['client:flash:html'],
module.exports['client:html5:build'],
module.exports['client:linux:build'],
//module.exports['client:android:build'],
module.exports['editor:flash:build'],
//module.exports['server:neko:build'],
module.exports['client:flash:html'],
module.exports['client:linux:deb'],
//module.exports['client:android:build'],
module.exports['editor:flash:build'],
module.exports['editor:flash:html'],
module.exports['client:html5:build'],
//module.exports['server:neko:build'],
);