Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/silentworks/svelte-preschool
https://github.com/silentworks/svelte-preschool
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/silentworks/svelte-preschool
- Owner: silentworks
- Created: 2016-12-15T18:15:14.000Z (almost 8 years ago)
- Default Branch: svelte-v3
- Last Pushed: 2022-07-15T16:33:10.000Z (over 2 years ago)
- Last Synced: 2024-05-01T23:48:13.656Z (6 months ago)
- Language: HTML
- Size: 1.09 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Pre School [Svelte version 3 rfc-1]
A preschool application built with `svelte` as a learning tool.
### Build
To setup this project you will need Svelte 3 which is currently in development:
```sh
git clone https://github.com/sveltejs/svelte
cd svelte
git checkout rfc-1
```Now that we have the project locally and the correct branch checked out, lets build and create a link so that the `rollup-plugin-svelte` and this project can have access to this version of svelte.
```sh
yarn
yarn build
yarn link
```Next, clone the `rollup-plugin-svelte` repository
```sh
git clone https://github.com/rollup/rollup-plugin-svelte
cd rollup-plugin-svelte
git checkout svelte-3
yarn link svelte
yarn
yarn build
yarn link
```Now clone this project and run the following commands:
```sh
yarn link rollup-plugin-svelte
yarn link svelte
yarn
yarn dev
```To build application run:
`yarn build`