Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sveltekit/ui
Powerful, reliable & fully featured Svelte UI library
https://github.com/sveltekit/ui
svelte svelte-components sveltejs
Last synced: about 1 month ago
JSON representation
Powerful, reliable & fully featured Svelte UI library
- Host: GitHub
- URL: https://github.com/sveltekit/ui
- Owner: sveltekit
- License: other
- Archived: true
- Created: 2019-11-01T03:19:21.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-20T21:18:46.000Z (about 4 years ago)
- Last Synced: 2024-09-26T00:17:18.141Z (about 1 month ago)
- Topics: svelte, svelte-components, sveltejs
- Language: Svelte
- Homepage: https://sveltekit.now.sh
- Size: 2.62 MB
- Stars: 64
- Watchers: 4
- Forks: 7
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Not in active dev anymore - plenty of other UI libs out there...
# Sveltekit - Powerful, reliable & fully featured Svelte UI library
## Getting started
```sh
$ npm install @sveltekit/ui
```**Note:** Install as a dev dependency `npm i @sveltekit/ui -D` if using [Sapper](https://sapper.svelte.dev/) to avoid SSR errors.
## Dev
## Dependencies
- [node](https://nodejs.org/en): stable
- [yarn](https://yarnpkg.com/en/): stable## Setup
```sh
$ yarn
```To work locally on the components you'll need to yarn link the project to itself
```sh
$ yarn link
$ yarn link @sveltekit/ui
$ yarn dev
```## Tests
Run tests (make sure you also have yarn dev running in another console)
```sh
$ yarn test:browser
```## Releases
Once all changes/PRs required for release have been merge to develop then create a PR for develop to be merged into master.
Complete the PR, which will merge all develop changes into master.
Checkout master and pull down from origin to retrieve latest changes.
Update CHANGELOG and commit change (don't push).
Run `npm version ` [https://docs.npmjs.com/about-semantic-versioning](https://docs.npmjs.com/about-semantic-versioning)
Then `npm publish`Finally, checkout develop and merge in changes from master ie. `git merge master`