https://github.com/kangasta/pileon
Pileon solitaire game
https://github.com/kangasta/pileon
game pileon playing-cards playingcards solitaire
Last synced: 4 months ago
JSON representation
Pileon solitaire game
- Host: GitHub
- URL: https://github.com/kangasta/pileon
- Owner: kangasta
- License: mit
- Created: 2020-03-07T23:17:19.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-11-13T00:03:32.000Z (over 1 year ago)
- Last Synced: 2024-12-20T03:35:38.243Z (over 1 year ago)
- Topics: game, pileon, playing-cards, playingcards, solitaire
- Language: Svelte
- Homepage: https://pileon.net
- Size: 1.53 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pileon solitaire
[](https://github.com/kangasta/pileon/actions/workflows/ci.yaml)
[](https://github.com/kangasta/pileon/actions/workflows/deploy.yaml)
Progressive web app that implements Pileon solitaire from the [Aisleriot solitaire collection](https://wiki.gnome.org/Apps/Aisleriot).
## Development
Install dependencies by running `npm ci`.
```sh
npm ci
```
Lint and test code by running `npm run lint` and `npm test`, respectively.
```sh
npm run lint
npm test
# With coverage analysis
npm test -- --coverage
```
Automatically format code by running `npm run format`.
```sh
npm run format
```
Run development server with `npm run dev`. Alternatively, create a production build by running `npm run build` and preview the build output with `npm run preview`.
```sh
npm run dev
npm run build
npm run preview
```