Skip to content

Commit 35ad723

Browse files
authored
Merge pull request #18 from mariuzzo/claude/svelte-5-migration-plan-4oeg7g
feat: Migrate from Gatsby to SvelteKit
2 parents 2019c4e + 837d31c commit 35ad723

128 files changed

Lines changed: 5696 additions & 22667 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Deploy with gh-pages
3939
run: |
4040
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
41-
npx gh-pages -d public -b gh-pages -u "github-actions-bot <support+actions@github.com>"
41+
npx gh-pages -d build -b gh-pages -t -u "github-actions-bot <support+actions@github.com>"
4242
env:
4343
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4444

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
node_modules/
2-
.cache/
3-
public
2+
.svelte-kit/
3+
build/
4+
5+
# OG images are generated at build time (npm run generate-og).
6+
static/images/og/

.prettierrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"singleQuote": true,
77
"trailingComma": "none",
88
"bracketSpacing": true,
9-
"jsxBracketSameLine": false,
10-
"fluid": false
11-
}
9+
"plugins": ["prettier-plugin-svelte"],
10+
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
11+
}

gatsby-browser.js

Lines changed: 0 additions & 11 deletions
This file was deleted.

gatsby-config.js

Lines changed: 0 additions & 74 deletions
This file was deleted.

0 commit comments

Comments
 (0)