This repository contains several svelte templates that are automatically maintained. They are based on the official templates.
Every template contains the following features:
- Code formatting using prettier
- Pre-commit linting using lint-staged with husky@4[?]
If you are unsure which one to pick, choose the snowpack-typescript one:
mkdir <project-name>
cd <project-name>
git init
npx degit FaustTobias/svelte-template#snowpack-typescript-tailwind . --force
yarn| Name | Description |
|---|---|
| snowpack-typescript-tailwind | Preconfigured yarn 2 snowpack project with TypeScript integration and TailwindCSS. Useful for single page applications. |
| snowpack-javascript-tailwind | Preconfigured yarn 2 snowpack project without preprocessor integrations and TailwindCSS. Useful for single page applications. |
| snowpack-typescript | Preconfigured yarn 2 snowpack project with TypeScript integration. Useful for single page applications. |
| snowpack-javascript | Preconfigured yarn 2 snowpack project without preprocessor integrations. Useful for single page applications. |
| typescript-tailwind | Preconfigured yarn 2 project with TypeScript integration and TailwindCSS. Useful for single page applications. Based on sveltejs/template. |
| typescript | Preconfigured yarn 2 project with TypeScript integration. Useful for single page applications. Based on sveltejs/template. |
| javascript | Preconfigured yarn 2 project without preprocessor integrations. Useful for single page applications. Based on sveltejs/template. |
| sapper-typescript-tailwind | Preconfigured yarn 2 sapper project with TypeScript integration and TailwindCSS. Useful for websites. Based on sveltejs/sapper-template#rollup. |
| sapper-typescript | Preconfigured yarn 2 sapper project with TypeScript integration. Useful for websites. Based on sveltejs/sapper-template#rollup. |
| sapper-javascript | Preconfigured yarn 2 sapper project without preprocessor integrations. Useful for websites. Based on sveltejs/sapper-template#rollup. |
Husky caused quite some controversies after releasing its 5.0.0 Release. First of all, its license was changed to a copyleft license. This makes it pretty much unusable in closed source projects. Additionally, its configuration has changed and you have to depend on an external module which handles the postinstall step for you. The templates here will stick to version 4 for now.