-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run Prettier on all files; update npm scripts
- Loading branch information
Showing
41 changed files
with
371 additions
and
390 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
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ node_modules | |
.env | ||
.env.* | ||
!.env.example | ||
/.aider* | ||
|
||
# Ignore files for PNPM, NPM and YARN | ||
pnpm-lock.yaml | ||
|
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,39 +1,47 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Connect Four | <%= pageTitle %></title> | ||
<meta name="viewport" content="width=device-width" /> | ||
<meta name="description" content="The slickest way to get 4-in-a-row. Play on your phone or computer, with a friend or against Mr. A.I." /> | ||
<meta name="apple-mobile-web-app-title" content="Connect Four" /> | ||
<meta name="theme-color" content="#ffffff" /> | ||
<link rel="shortcut icon" href="/icons/favicon.png" /> | ||
<link rel="apple-touch-icon" href="/icons/app-icon-192.png" sizes="192x192" /> | ||
<script | ||
data-goatcounter="https://calebevans-connectfour.goatcounter.com/count" | ||
data-goatcounter-settings='{"allow_local": true, "path": "/", "title": "Connect Four | Caleb Evans"}' | ||
async | ||
src="https://gc.zgo.at/count.v4.js" | ||
crossorigin="anonymous" | ||
integrity="sha384-nRw6qfbWyJha9LhsOtSb2YJDyZdKvvCFh0fJYlkquSFjUxp9FVNugbfy8q1jdxI+" | ||
></script> | ||
</head> | ||
<body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Connect Four | <%= pageTitle %></title> | ||
<meta name="viewport" content="width=device-width" /> | ||
<meta | ||
name="description" | ||
content="The slickest way to get 4-in-a-row. Play on your phone or computer, with a friend or against Mr. A.I." | ||
/> | ||
<meta name="apple-mobile-web-app-title" content="Connect Four" /> | ||
<meta name="theme-color" content="#ffffff" /> | ||
<link rel="shortcut icon" href="/icons/favicon.png" /> | ||
<link rel="apple-touch-icon" href="/icons/app-icon-192.png" sizes="192x192" /> | ||
<script | ||
data-goatcounter="https://calebevans-connectfour.goatcounter.com/count" | ||
data-goatcounter-settings='{"allow_local": true, "path": "/", "title": "Connect Four | Caleb Evans"}' | ||
async | ||
src="https://gc.zgo.at/count.v4.js" | ||
crossorigin="anonymous" | ||
integrity="sha384-nRw6qfbWyJha9LhsOtSb2YJDyZdKvvCFh0fJYlkquSFjUxp9FVNugbfy8q1jdxI+" | ||
></script> | ||
</head> | ||
<body> | ||
<noscript> | ||
<span id="github-link" class="nav-link nav-link-left"> | ||
<a href="https://github.com/caleb531/connect-four">View on GitHub</a> | ||
</span> | ||
|
||
<noscript> | ||
<span id="github-link" class="nav-link nav-link-left"> | ||
<a href="https://github.com/caleb531/connect-four">View on GitHub</a> | ||
</span> | ||
<span id="personal-site-link" class="nav-link nav-link-right"> | ||
by <a href="https://calebevans.me">Caleb Evans</a> | ||
</span> | ||
<h1>Connect Four</h1> | ||
<p> | ||
Please | ||
<a href="https://www.whatismybrowser.com/guides/how-to-enable-javascript/" | ||
>enable JavaScript</a | ||
> | ||
to play. | ||
</p> | ||
</noscript> | ||
|
||
<span id="personal-site-link" class="nav-link nav-link-right"> | ||
by <a href="https://calebevans.me">Caleb Evans</a> | ||
</span> | ||
<h1>Connect Four</h1> | ||
<p>Please <a href="https://www.whatismybrowser.com/guides/how-to-enable-javascript/">enable JavaScript</a> to play.</p> | ||
</noscript> | ||
<main></main> | ||
|
||
<main></main> | ||
|
||
<script type="module" src="/scripts/index.js"></script> | ||
</body> | ||
<script type="module" src="/scripts/index.js"></script> | ||
</body> | ||
</html> |
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 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 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
Oops, something went wrong.