Skip to content
This repository has been archived by the owner on Sep 7, 2021. It is now read-only.

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
## Nieuwe features:
* De app is nu offline te gebruiken
* Een label geeft aan de een spel offline beschikbaar is
* Spellen kunnen opgeslagen worden voor offline gebruik

##Bugfixes
* Diverse bugfixes
  • Loading branch information
Thijs authored May 31, 2021
1 parent bf6a651 commit 1435e48
Show file tree
Hide file tree
Showing 40 changed files with 1,382 additions and 546 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# editorconfig.org
root = true

[*]
indent_style = tab
tab_width = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VITE_API_URL=https://acc-jungle-gym-api.herokuapp.com/games
VITE_API_URL=https://acc-jungle-gym-api.herokuapp.com
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ yarn.lock
.netlify
.svelte-kit
.cloudflare
.pnpm-debug.log
.pnpm-debug.log
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ npm run build

Copy the `.env.example` and rename it to `.env`.

### Husky

[Husky](https://github.com/typicode/husky) is used to format your code (automatically) on commit.

In order to use Husky you have to install it with `npm run prepare`. This will install Husky for your project.

The next time you commit, Husky will automatically format it for you.

## :open_file_folder: Folder Structure

## :anger: Others
9 changes: 9 additions & 0 deletions lint-staged.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
linters: {
'**/*.+(js|md|ts|css|yml|yaml|html|json|svelte)': [
'eslint --fix',
'prettier --write',
'git add'
]
}
};
Loading

0 comments on commit 1435e48

Please sign in to comment.