Looking for LÖVE...
29 |
30 |
31 |
32 |
Don't have LÖVE installed? Download it now.
33 |
34 |
35 |
36 | Superpowers LÖVE games can only be started from the app,
37 | they can't run directly in the browser.
38 |
39 |
40 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/public/locales/de/system.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "LÖVE",
3 | "description": "LÖVE lässt Sie 2D Spiele in Lua erstellen."
4 | }
5 |
--------------------------------------------------------------------------------
/public/locales/en/system.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "LÖVE",
3 | "description": "LÖVE lets you make 2D games in Lua."
4 | }
5 |
--------------------------------------------------------------------------------
/public/locales/it/system.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "LÖVE",
3 | "description": "LÖVE ti permette di creare giochi in 2D con Lua."
4 | }
5 |
--------------------------------------------------------------------------------
/server/gulpfile.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 |
3 | const gulp = require("gulp");
4 |
5 | // TypeScript
6 | const ts = require("gulp-typescript");
7 | const tsProject = ts.createProject("./tsconfig.json");
8 | const tslint = require("gulp-tslint");
9 |
10 | gulp.task("typescript", () => {
11 | let failed = false;
12 | const tsResult = tsProject.src()
13 | .pipe(tslint({ formatter: "prose" }))
14 | .pipe(tslint.report({ emitError: true }))
15 | .on("error", (err) => { throw err; })
16 | .pipe(tsProject())
17 | .on("error", () => { failed = true; })
18 | .on("end", () => { if (failed) throw new Error("There were TypeScript errors."); });
19 | return tsResult.js.pipe(gulp.dest("./"));
20 | });
21 |
22 | // All
23 | gulp.task("default", gulp.parallel("typescript"));
24 |
--------------------------------------------------------------------------------
/server/index.ts:
--------------------------------------------------------------------------------
1 | ///