🎯

svelte-deployment

🎯Skill

from spences10/svelte-claude-skills

VibeIndex|
What it does

Deploys Svelte projects with adapter configurations, Vite setup, pnpm management, and production build optimizations.

πŸ“¦

Part of

spences10/svelte-claude-skills(7 items)

svelte-deployment

Installation

Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add spences10/claude-code-toolkit
Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add spences10/svelte-skills-kit
Install PluginInstall plugin from marketplace
/plugin install toolkit-skills@spences10-claude-code-toolkit
Install PluginInstall plugin from marketplace
/plugin install svelte-skills@spences10-svelte-skills-kit
git cloneClone repository
git clone https://github.com/yourusername/svelte-claude-skills.git ~/.claude/skills/svelte

+ 1 more commands

πŸ“– Extracted from docs: spences10/svelte-claude-skills
4Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Svelte deployment guidance. Use for adapters, Vite config, pnpm setup, library authoring, PWA, or production builds.

Overview

# Svelte Deployment

Quick Start

pnpm 10+: Add prepare script (postinstall disabled by default):

```json

{

"scripts": {

"prepare": "svelte-kit sync"

}

}

```

Vite 7: Update both packages together:

```bash

pnpm add -D vite@7 @sveltejs/vite-plugin-svelte@6

```

Adapters

```bash

# Static site

pnpm add -D @sveltejs/adapter-static

# Node server

pnpm add -D @sveltejs/adapter-node

# Cloudflare

pnpm add -D @sveltejs/adapter-cloudflare

```

Reference Files

  • [library-authoring.md](references/library-authoring.md) - Publishing

Svelte packages

  • [pwa-setup.md](references/pwa-setup.md) - Offline-first with workbox
  • [cloudflare-gotchas.md](references/cloudflare-gotchas.md) -

Streaming issues

Notes

  • Cloudflare may strip Transfer-Encoding: chunked (breaks streaming)
  • Library authors: include svelte in keywords AND peerDependencies
  • Single-file bundle: kit.output.bundleStrategy: 'single'
  • Last verified: 2025-01-14