-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to modern tooling, react, node, vite, etc.
- Loading branch information
Showing
23 changed files
with
2,516 additions
and
3,886 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module.exports = { | ||
root: true, | ||
env: { browser: true, es2020: true }, | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:react-hooks/recommended', | ||
], | ||
ignorePatterns: ['dist', '.eslintrc.cjs'], | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['react-refresh'], | ||
rules: { | ||
'react-refresh/only-export-components': [ | ||
'warn', | ||
{ allowConstantExport: true }, | ||
], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
nodejs 16.14.1 | ||
nodejs 20.11.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
|
||
<head> | ||
<title>The Cat Food Game</title> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> | ||
<link rel="stylesheet" href="normalize.css" /> | ||
<link rel="stylesheet" href="index.scss" /> | ||
<script type="module" src="index.tsx"></script> | ||
<meta charset="utf-8" /> | ||
<meta property="og:title" content="The Cat Food Game" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:image" content="./img/cat-food-game-screen-shot.png" /> | ||
<meta property="og:image" content="/img/cat-food-game-screen-shot.png" /> | ||
<meta property="og:url" content="https://food.cats-and-dogs.club/" /> | ||
<meta property="og:description" content="Help the 🐱 push its food over the bowls. But don't get stuck!" /> | ||
<meta property="og:site_name" content="The Cat Food Game" /> | ||
<meta name="twitter:card" content="summary" /> | ||
</head> | ||
|
||
<body> | ||
<div id="app"></div> | ||
<noscript> Sorry, but The Cat Food Game requires javascript. </noscript> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
<noscript>Sorry, but The Cat Food Game requires javascript.</noscript> | ||
</body> | ||
|
||
</html> | ||
</html> |
Oops, something went wrong.