-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c6c6719
Showing
6 changed files
with
4,350 additions
and
0 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,17 @@ | ||
src/magnolia-template-ramseyinhouse/assets/dist | ||
.settings* | ||
*.DS_Store | ||
*.sublime-* | ||
.idea* | ||
target* | ||
.classpath | ||
.project | ||
*.iml | ||
node* | ||
.vscode/ | ||
yarn-error.log | ||
npm-debug.log | ||
.sass-cache | ||
.stylelintcache | ||
dist/ | ||
.cache |
Empty file.
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,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<title>JS13k Video Game</title> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
<link rel="stylesheet" type="text/css" media="screen" href="index.css"> | ||
</head> | ||
|
||
<body> | ||
<script src="index.js"></script> | ||
</body> | ||
|
||
</html> |
Empty file.
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,30 @@ | ||
{ | ||
"name": "js13kgames", | ||
"version": "1.0.0", | ||
"author": "Christian Hughes <[email protected]>", | ||
"contributors": [ | ||
{ | ||
"name": "Samuel Schumacher <[email protected]>" | ||
}, | ||
{ | ||
"name": "Christian Hughes <[email protected]>" | ||
} | ||
], | ||
"license": "MIT", | ||
"devDependencies": { | ||
"husky": "^0.14.3", | ||
"kontra": "^4.0.1", | ||
"parcel-bundler": "^1.9.7", | ||
"prettier": "^1.14.2", | ||
"pretty-quick": "^1.6.0" | ||
}, | ||
"scripts": { | ||
"build": "parcel build index.html", | ||
"watch": "parcel index.html", | ||
"precommit": "pretty-quick --staged" | ||
}, | ||
"prettier": { | ||
"arrowParens": "always", | ||
"singleQuote": true | ||
} | ||
} |
Oops, something went wrong.