Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kangasta/pileon
Pileon solitaire game
https://github.com/kangasta/pileon
game pileon playing-cards playingcards solitaire
Last synced: 2 days 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 (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-12T23:12:07.000Z (about 1 month ago)
- Last Synced: 2024-11-12T23:20:45.430Z (about 1 month ago)
- Topics: game, pileon, playing-cards, playingcards, solitaire
- Language: Svelte
- Homepage: https://pileon.net
- Size: 1.8 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pileon solitaire
[![CI](https://github.com/kangasta/pileon/actions/workflows/ci.yaml/badge.svg)](https://github.com/kangasta/pileon/actions/workflows/ci.yaml)
[![Deploy](https://github.com/kangasta/pileon/actions/workflows/deploy.yaml/badge.svg)](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 devnpm run build
npm run preview
```