Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
ubermanu committed Dec 3, 2024
1 parent f7c9076 commit bf63eb8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch"
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"format": "prettier -w **/*.{js,css,svelte,json}"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.6",
Expand All @@ -26,6 +27,7 @@
"@ubermanu/prettier-config": "^3.4.0",
"@vite-pwa/sveltekit": "^0.6.6",
"animate.css": "^4.1.1",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
Expand All @@ -38,4 +40,4 @@
"workbox-window": "^7.3.0"
},
"prettier": "@ubermanu/prettier-config"
}
}
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/app.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@import "tailwindcss";
@import 'tailwindcss';
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"type": "image/png"
}
]
}
}
2 changes: 1 addition & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
)
}
const { children } = $props();
const { children } = $props()
</script>

<svelte:head>
Expand Down
4 changes: 2 additions & 2 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ export default defineConfig({
registerType: 'autoUpdate',
manifest: {
...manifest,
display: "standalone",
display: 'standalone',
},
}),
],
build: {
target: "ES2022",
target: 'ES2022',
},
})

0 comments on commit bf63eb8

Please sign in to comment.