Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3 onboading pinned versions #3181

Merged
merged 2 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

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

Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ import ProcessStep from '@components/docs/ProcessStep.astro';
<Process>
<ProcessStep step="1">
### Create a Project
Start by creating a new project using `create-next-app` (the Next.js CLI):
Start by creating a new project using `create-next-app`, the Next.js CLI:
```console
npm create next-app@latest my-skeleton-app --typescript --tailwind --eslint
npm create next-app@15.1.6 my-skeleton-app --typescript --tailwind --eslint
cd my-skeleton-app
```
> NOTE: note that we are temporarily pinning `v15.1.6` to ensure Tailwind v3 is the only version available to install. Please note that [Tailwind v4 support is coming soon](https://github.com/skeletonlabs/skeleton/discussions/3175), at which point we'll enable `@latest` again.
</ProcessStep>
<ProcessStep step="2">
### Install Skeleton
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ import ProcessStep from '@components/docs/ProcessStep.astro';
### Create a Project
Create a new Svelte 5 project using `sv` (the [Svelte CLI](https://svelte.dev/docs/cli/overview)). This generates a minimal project with Typescript enabled.
```console
npx sv create --template minimal --types ts my-skeleton-app
npx sv@0.6.16 create --template minimal --types ts my-skeleton-app
cd my-skeleton-app
```
> NOTE: make sure to select `tailwind` when prompted, otherwise use `npx sv add tailwindcss` to add it retroactively.
> NOTE: note that we pin `[email protected]` to limit to Tailwind v3. However, [Tailwind v4 support is coming soon](https://github.com/skeletonlabs/skeleton/discussions/3175). If you miss the prompt to install Tailwind, use `npx sv@0.6.16 add tailwindcss` to add it retroactively.
</ProcessStep>
<ProcessStep step="2">
### Install Skeleton
Expand Down