Linting, add two more games to games.json
This commit is contained in:
parent
0fbe2e8f8e
commit
64d585b054
2 changed files with 11 additions and 7 deletions
3
index.js
3
index.js
|
|
@ -89,12 +89,11 @@ app.use(
|
||||||
app.use("/", express.static("dist/client/"));
|
app.use("/", express.static("dist/client/"));
|
||||||
|
|
||||||
console.log(chalk.gray("Starting Alu..."));
|
console.log(chalk.gray("Starting Alu..."));
|
||||||
console.log(chalk.green("Alu started successfully!"))
|
console.log(chalk.green("Alu started successfully!"));
|
||||||
server.on("listening", () => {
|
server.on("listening", () => {
|
||||||
console.log(chalk.green(`Server running at http://localhost:${PORT}/.`));
|
console.log(chalk.green(`Server running at http://localhost:${PORT}/.`));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
server.listen({
|
server.listen({
|
||||||
port: PORT,
|
port: PORT,
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,4 @@
|
||||||
{
|
{
|
||||||
"1v1.lol": {
|
|
||||||
"name": "1v1.lol",
|
|
||||||
"image": "/games/1v1.lol/logo.png",
|
|
||||||
"slug": "1v1.lol"
|
|
||||||
},
|
|
||||||
"2048": {
|
"2048": {
|
||||||
"name": "2048",
|
"name": "2048",
|
||||||
"image": "/games/2048/logo.png",
|
"image": "/games/2048/logo.png",
|
||||||
|
|
@ -139,6 +134,11 @@
|
||||||
"image": "/games/grindcraft/logo.png",
|
"image": "/games/grindcraft/logo.png",
|
||||||
"slug": "grindcraft"
|
"slug": "grindcraft"
|
||||||
},
|
},
|
||||||
|
"help-no-brake": {
|
||||||
|
"name": "Help! No Brake",
|
||||||
|
"image": "/games/help-no-brake/logo.webp",
|
||||||
|
"slug": "help-no-brake"
|
||||||
|
},
|
||||||
"idle-breakout": {
|
"idle-breakout": {
|
||||||
"name": "Idle Breakout",
|
"name": "Idle Breakout",
|
||||||
"image": "/games/idle-breakout/logo.png",
|
"image": "/games/idle-breakout/logo.png",
|
||||||
|
|
@ -209,6 +209,11 @@
|
||||||
"image": "/games/solitaire/logo.png",
|
"image": "/games/solitaire/logo.png",
|
||||||
"slug": "solitaire"
|
"slug": "solitaire"
|
||||||
},
|
},
|
||||||
|
"sort-the-court": {
|
||||||
|
"name": "Sort the Court!",
|
||||||
|
"image": "/games/sort-the-court/logo.jpg",
|
||||||
|
"slug": "sort-the-court"
|
||||||
|
},
|
||||||
"superhot": {
|
"superhot": {
|
||||||
"name": "Superhot",
|
"name": "Superhot",
|
||||||
"image": "/games/superhot/logo.png",
|
"image": "/games/superhot/logo.png",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue