diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index eb460cd..b514ea3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,7 +2,7 @@ name: Deploy to GitHub Pages on: push: - branches: "main" + branches: 'main' jobs: build_site: @@ -28,7 +28,7 @@ jobs: - name: build env: - BASE_PATH: "/" + BASE_PATH: '/' run: | npm run build touch build/.nojekyll @@ -37,7 +37,7 @@ jobs: uses: actions/upload-pages-artifact@v1 with: # this should match the `pages` option in your adapter-static options - path: "build/" + path: 'build/' deploy: needs: build_site diff --git a/package.json b/package.json index 1197b29..e29bbee 100644 --- a/package.json +++ b/package.json @@ -1,43 +1,43 @@ { - "name": "flip-rs.github.io", - "version": "0.1.0", - "private": true, - "scripts": { - "dev": "vite dev", - "build": "vite build", - "preview": "vite preview", - "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", - "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", - "lint": "prettier --check .", - "format": "prettier --write ." - }, - "devDependencies": { - "@skeletonlabs/skeleton": "2.6.1", - "@skeletonlabs/tw-plugin": "0.3.0", - "@sveltejs/adapter-auto": "^3.0.0", - "@sveltejs/kit": "^2.0.0", - "@sveltejs/vite-plugin-svelte": "^3.0.0", - "@tailwindcss/forms": "0.5.7", - "@tailwindcss/typography": "0.5.10", - "@types/node": "20.10.6", - "autoprefixer": "10.4.16", - "postcss": "8.4.32", - "prettier": "^3.1.1", - "prettier-plugin-svelte": "^3.1.2", - "svelte": "^4.2.7", - "svelte-check": "^3.6.0", - "tailwindcss": "3.4.0", - "tslib": "^2.4.1", - "typescript": "^5.0.0", - "vite": "^5.0.3", - "vite-plugin-tailwind-purgecss": "0.2.0" - }, - "type": "module", - "dependencies": { - "@floating-ui/dom": "1.5.3", - "@fortawesome/fontawesome-free": "^6.5.1", - "@sveltejs/adapter-static": "^3.0.1", - "highlight.js": "^11.9.0", - "svelte-grid-extended": "^1.1.4" - } + "name": "flip-rs.github.io", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "vite dev", + "build": "vite build", + "preview": "vite preview", + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", + "lint": "prettier --check .", + "format": "prettier --write ." + }, + "devDependencies": { + "@skeletonlabs/skeleton": "2.6.1", + "@skeletonlabs/tw-plugin": "0.3.0", + "@sveltejs/adapter-auto": "^3.0.0", + "@sveltejs/kit": "^2.0.0", + "@sveltejs/vite-plugin-svelte": "^3.0.0", + "@tailwindcss/forms": "0.5.7", + "@tailwindcss/typography": "0.5.10", + "@types/node": "20.10.6", + "autoprefixer": "10.4.16", + "postcss": "8.4.32", + "prettier": "^3.1.1", + "prettier-plugin-svelte": "^3.1.2", + "svelte": "^4.2.7", + "svelte-check": "^3.6.0", + "tailwindcss": "3.4.0", + "tslib": "^2.4.1", + "typescript": "^5.0.0", + "vite": "^5.0.3", + "vite-plugin-tailwind-purgecss": "0.2.0" + }, + "type": "module", + "dependencies": { + "@floating-ui/dom": "1.5.3", + "@fortawesome/fontawesome-free": "^6.5.1", + "@sveltejs/adapter-static": "^3.0.1", + "highlight.js": "^11.9.0", + "svelte-grid-extended": "^1.1.4" + } } diff --git a/static/favicon.png b/static/favicon.png index c4e3735..44712d3 100644 Binary files a/static/favicon.png and b/static/favicon.png differ diff --git a/svelte.config.js b/svelte.config.js index 05bb612..9649a6b 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -8,7 +8,7 @@ const config = { kit: { adapter: adapter({ fallback: '404.html' - }), + }) } };