Skip to content

Commit

Permalink
updated README and LICENSE
Browse files Browse the repository at this point in the history
  • Loading branch information
tulustul committed Sep 8, 2019
1 parent 091a9ef commit 5180e78
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 60 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Mateusz Tomczyk
Copyright (c) 2019 Mateusz Tomczyk

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 7 additions & 2 deletions README.md
@@ -1,6 +1,11 @@
A 13kB html5 game challenge.
# [The Wandering Wraith](https://tulustul.github.io/The-Wandering-Wraith/)

Made for [Js13kGames](https://js13kgames.com/)
A 2d platformer for [js13kGames](https://js13kgames.com/) 2019 edition challenge.

## Controls

- left and rigth arrows for movement
- space for jumping

## Getting started

Expand Down
126 changes: 78 additions & 48 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "js13k2019",
"name": "wandering-wraith",
"version": "1.0.0",
"description": "A 13kB shooter challenge",
"description": "A 13kB 2d platformer",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode=development --host 0.0.0.0",
Expand All @@ -13,7 +13,7 @@
"devDependencies": {
"advzip-bin": "^1.1.0",
"colors": "^1.3.3",
"gh-pages": "^1.2.0",
"gh-pages": "^2.1.1",
"html-webpack-inline-svg-plugin": "^1.2.4",
"html-webpack-plugin": "^3.2.0",
"pretty-bytes": "^5.3.0",
Expand All @@ -24,9 +24,7 @@
"webpack-cli": "^3.3.6",
"webpack-conditional-loader": "^1.0.12",
"webpack-dev-server": "^3.8.0",
"zip-webpack-plugin": "^3.0.0"
},
"dependencies": {
"zip-webpack-plugin": "^3.0.0",
"extra-watch-webpack-plugin": "^1.0.3"
}
}
6 changes: 3 additions & 3 deletions publish.js 100644 → 100755
@@ -1,11 +1,11 @@
#!/usr/bin/env node

var ghpages = require('gh-pages');
var ghpages = require("gh-pages");

ghpages.publish('dist', err => {
ghpages.publish("dist", err => {
if (err) {
console.error(`Failed to publish: ${err}`);
} else {
console.log('Publishing successfull');
console.log("Publishing successfull");
}
});

0 comments on commit 5180e78

Please sign in to comment.