-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrate project to use webpack with ts
- Loading branch information
Abdullah Jamal
committed
Mar 19, 2024
1 parent
1f477a5
commit ce6be2f
Showing
61 changed files
with
6,611 additions
and
2,117 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.DS_Store | ||
node_modules | ||
*.zip | ||
*.zip | ||
dist/bundle.js |
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,22 +1,22 @@ | ||
body{ | ||
background-color: rgb(19, 41, 75); | ||
} | ||
.header { | ||
background-color: #9933cc; | ||
color: #ffffff; | ||
padding: 15px; | ||
} | ||
body { | ||
background-color: rgb(19, 41, 75); | ||
} | ||
.header { | ||
background-color: #9933cc; | ||
color: #ffffff; | ||
padding: 15px; | ||
} | ||
|
||
#no-select{ | ||
-webkit-user-select: none; | ||
cursor: not-allowed; | ||
pointer-events: none; | ||
} | ||
#no-select { | ||
-webkit-user-select: none; | ||
cursor: not-allowed; | ||
pointer-events: none; | ||
} | ||
|
||
.footer { | ||
background-color: #0099cc; | ||
color: #ffffff; | ||
text-align: center; | ||
font-size: 12px; | ||
padding: 15px; | ||
} | ||
.footer { | ||
background-color: #0099cc; | ||
color: #ffffff; | ||
text-align: center; | ||
font-size: 12px; | ||
padding: 15px; | ||
} |
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,13 @@ | ||
<!DOCTYPE html> | ||
<html xml:lang> | ||
<head> | ||
<title>Battleship Board Game</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link href="/css/style.css" rel="stylesheet" type="text/css" /> | ||
<link rel="manifest" href="/manifest.json" /> | ||
<script defer src="/src/app.js"></script> | ||
</head> | ||
<body> | ||
<script src="bundle.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import module = require('p5'); | ||
export = module; | ||
export as namespace p5; |
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
Oops, something went wrong.