@syncit/ui
v1.0.2
Published
[![npm version](https://badge.fury.io/js/%40syncit%2Fui.svg)](https://badge.fury.io/js/%40syncit%2Fui)
Downloads
105
Readme
@syncit/ui
UI & demo project for Syncit, see Guide.md for more details.
Developing
Install dependencies with yarn
, start a development server:
yarn dev
# or start the server and open the app in a new browser tab
yarn dev -- --open
Everything inside src/lib
is part of the library, everything inside src/routes
can be used as a showcase or preview app.
This project is powered by Svelte(kit): Everything you need to build a Svelte library, powered by create-svelte
.
Read more about creating a library in the docs.
Building
To build the library:
npm run package
To create a production version of the showcase app:
npm run build
You can preview the production build with npm run preview
.
Publishing
To publish your library to npm:
yarn publish