https://github.com/rodneylab/sveltekit-tooling
SvelteKit tooling: we look at 7 tools you can add to streamline your Svelte continuous integration (CI) and development processes.
https://github.com/rodneylab/sveltekit-tooling
ci conventional-commits eslint husky pnpm precommit prettier stylelint svelte sveltekit tooling
Last synced: 11 months ago
JSON representation
SvelteKit tooling: we look at 7 tools you can add to streamline your Svelte continuous integration (CI) and development processes.
- Host: GitHub
- URL: https://github.com/rodneylab/sveltekit-tooling
- Owner: rodneylab
- License: bsd-3-clause
- Created: 2021-11-16T17:49:56.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-31T08:32:42.000Z (12 months ago)
- Last Synced: 2025-01-31T09:28:14.355Z (12 months ago)
- Topics: ci, conventional-commits, eslint, husky, pnpm, precommit, prettier, stylelint, svelte, sveltekit, tooling
- Language: JavaScript
- Homepage:
- Size: 430 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README

SvelteKit Tooling
# sveltekit-tooling
[](https://stackblitz.com/github/rodneylab/sveltekit-tooling)
Example repo for configuring continuous integration (CI) tooling to work with
SvelteKit. The code accompanies the
post
on SvelteKit Tooling. If you have any questions, please drop a comment at
the bottom of that page.
## Building and previewing the site
If you're seeing this, you've probably already done this step. Congrats!
```bash
git clone https://github.com/rodneylab/sveltekit-tooling.git
cd sveltekit-tooling
pnpm install # or npm install
pnpm run dev
```
## Building
```bash
pnpm run build
```
> You can preview the built app with `pnpm run preview`, regardless of whether
> you installed an adapter. This should _not_ be used to serve your app in
> production.
Feel free to jump into the
[Rodney Lab matrix chat room](https://matrix.to/#/%23rodney:matrix.org).