3 Commits

Author SHA1 Message Date
9e67513897 build(npm): update gulp-haxetool 2026-05-20 00:05:30 +03:00
e41d461ba6 feat(app): update nginx image source 2026-05-20 00:03:52 +03:00
acf0706bef docs: add screenshot 2026-05-04 16:12:46 +03:00
5 changed files with 13749 additions and 13598 deletions

View File

@@ -1,9 +1,13 @@
# Puzzlez
# Puzzle'z
Puzzle game
![Puzzle'z](docs/Screenshot_2026-05-04_15-42-42.jpg "Puzzle'z")
## Play
https://shmyga.ru/puzzlez/html5/index.html
## Packages
## Releases
https://git.shmyga.ru/InfernalGames/-/packages/generic/puzzlez
https://git.shmyga.ru/InfernalGames/puzzlez/releases

Binary file not shown.

After

Width:  |  Height:  |  Size: 357 KiB

View File

@@ -4,8 +4,11 @@ const Config = require("./config.json");
const packageInfo = require("./package.json");
const { System, Sdk, Haxe, Project } = require("gulp-haxetool");
const dateformat = require("dateformat");
const argv = require("yargs").argv;
const publish = require("./tasks/gulp-publish");
Project.useRuffle();
if (packageInfo.haxe) {
Haxe.VERSION = packageInfo.haxe;
}
@@ -63,6 +66,9 @@ const config = new Project.Config({
flags: ["proto_debug"],
});
const host = argv.host || "localhost";
const port = argv.port || 5000;
const app = new Project(
Project.BuildSystem.OPENFL,
[
@@ -87,6 +93,10 @@ const app = new Project(
width: 1280,
height: 768,
},
macros: [
`CompilationOption.set('host','${host}')`,
`CompilationOption.set('port',${port})`,
],
flags: ["app"],
}),
).bind(module, gulp);

475
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,7 +9,7 @@
"gulp-add": "0.0.2",
"gulp-clean": "^0.4.0",
"gulp-cli": "^2.2.0",
"gulp-haxetool": "^0.1.9",
"gulp-haxetool": "^0.2.1",
"yargs": "^13.2.4"
},
"haxeDependencies": {