Skip to content

kangasta/pileon

Repository files navigation

Pileon solitaire

CI Deploy

Progressive web app that implements Pileon solitaire from the Aisleriot solitaire collection.

Development

Install dependencies by running npm ci.

npm ci

Lint and test code by running npm run lint and npm test, respectively.

npm run lint
npm test

# With coverage analysis
npm test -- --coverage

Automatically format code by running npm run format.

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.

npm run dev

npm run build
npm run preview