Skip to content

Commit

Permalink
Make it work and new version
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfr committed Aug 21, 2022
1 parent 15fccb6 commit 5bf7dc5
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

### 0.6

* Migrated to SvelteKit with latest breaking changes (+page)



### 0.3

* Migrated to latest SvelteKit version (109)
* Added chart logic powered by LayerCake
* Added multi select component
* Added slider component
* Added color picker component

### 0.2 (preview)

* Implement copy/paste button in styleguide
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
"name": "sveltekit-jui",
"version": "0.5.0",
"version": "0.6.0",
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "vite package",
"preview": "vite preview"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<main>
<div>
<div class="c-brand">
<h1>Sveltekit-JUI (0.5)</h1>
<h1>Sveltekit-JUI (0.6)</h1>
</div>
<RichContent>
<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>
Expand Down
8 changes: 8 additions & 0 deletions vite.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { sveltekit } from '@sveltejs/kit/vite';

/** @type {import('vite').UserConfig} */
const config = {
plugins: [sveltekit()]
};

export default config;

0 comments on commit 5bf7dc5

Please sign in to comment.