Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bastidood/sveltekit-tailwind-template

An opinionated starter template for SvelteKit + Tailwind CSS.
https://github.com/bastidood/sveltekit-tailwind-template

css html javascript svelte sveltekit tailwindcss typescript vite

Last synced: about 2 months ago
JSON representation

An opinionated starter template for SvelteKit + Tailwind CSS.

Awesome Lists containing this project

README

        

# Checklist

- [ ] Update the project `name` in the [`package.json`](./package.json).

# Development

## Running the Web Server

```bash
# Install the dependencies.
pnpm install

# Synchronize auto-generated files from SvelteKit.
pnpm sync

# Start the development server with live reloading + hot module replacement.
pnpm dev

# Compile the production build (i.e., with optimizations).
pnpm build

# Start the production preview server.
pnpm preview
```

## Linting the Codebase

```bash
# Check Formatting
pnpm fmt # prettier

# Apply Formatting Auto-fix
pnpm fmt:fix # prettier --write

# Check Linting Rules
pnpm lint:html # linthtml
pnpm lint:css # stylelint
pnpm lint:js # eslint
pnpm lint:svelte # svelte-check

# Check All Lints in Parallel
pnpm lint
```