Skip to content

Commit 5bf7dc5

Browse files
committed
Make it work and new version
1 parent 15fccb6 commit 5bf7dc5

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
### 0.6
4+
5+
* Migrated to SvelteKit with latest breaking changes (+page)
6+
7+
8+
9+
### 0.3
10+
11+
* Migrated to latest SvelteKit version (109)
12+
* Added chart logic powered by LayerCake
13+
* Added multi select component
14+
* Added slider component
15+
* Added color picker component
16+
317
### 0.2 (preview)
418

519
* Implement copy/paste button in styleguide

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
22
"name": "sveltekit-jui",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"license": "MIT",
55
"scripts": {
66
"dev": "vite dev",
77
"build": "vite build",
8-
"package": "vite package",
98
"preview": "vite preview"
109
},
1110
"devDependencies": {

src/routes/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<main>
99
<div>
1010
<div class="c-brand">
11-
<h1>Sveltekit-JUI (0.5)</h1>
11+
<h1>Sveltekit-JUI (0.6)</h1>
1212
</div>
1313
<RichContent>
1414
<p>Sveltekit-JUI is a kit of UI components to be used in conjunction with <a href="https://svelte.dev/">Svelte</a> and <a href="https://kit.svelte.dev/docs">SvelteKit</a>.</p>

vite.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { sveltekit } from '@sveltejs/kit/vite';
2+
3+
/** @type {import('vite').UserConfig} */
4+
const config = {
5+
plugins: [sveltekit()]
6+
};
7+
8+
export default config;

0 commit comments

Comments
 (0)