Skip to content

Commit

Permalink
Merge pull request #1 from ykrods/svelte5
Browse files Browse the repository at this point in the history
Update svelte version to 5x, and replace build tool to vite
  • Loading branch information
ykrods authored Sep 2, 2024
2 parents 262260d + 5710fc8 commit 276de58
Show file tree
Hide file tree
Showing 47 changed files with 2,894 additions and 841 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: publish

on:
push:
Expand Down Expand Up @@ -27,7 +27,7 @@ jobs:
- run: npm run build
- uses: actions/upload-pages-artifact@v3
with:
path: docs
path: dist

deploy:
needs: build
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
public/svelte-shoelace-example
dist/svelte-shoelace-example
node_modules
File renamed without changes.
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Svelte + Shoelace</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading

0 comments on commit 276de58

Please sign in to comment.