Skip to content

Latest commit

 

History

History
63 lines (39 loc) · 1.17 KB

CONTRIBUTING.md

File metadata and controls

63 lines (39 loc) · 1.17 KB

SvelteKit OIDC OAuth Contributing Guide

Created with create-svelte and managed with changesets.

PRs

Generating changelogs

For changes to be reflected in package changelogs, run npx changeset and follow the prompts.

Releases

The Changesets GitHub action will create and update a PR that applies changesets and publishes new versions of changed packages to npm.

Development

Make changes to the package in src/lib and the Docs site in src/routes.

Build

To build the library:

npm run package

To create a production version of the Docs site:

npm run build

Test

You can use the documentation site at src/routes to experiment with your changes locally.

Unit Tests

npm run test

Unit Test Coverage

npm run test:cov

Unit Test Coverage with UI

npm run test:cov:ui

Lint & Format

npm run lint
npm run format