Skip to content
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
2 changes: 1 addition & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"mode": "pre",
"mode": "exit",
"tag": "next",
"initialVersions": {
"skeleton": "1.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function transformPackageJson(code: string) {
const coerced = coerce(pkg[field][dep]);
if (coerced && lt(coerced.version, '4.0.0')) {
delete pkg[field][dep];
pkg[field][dep] = 'next';
pkg[field][dep] = '^4.0.0';
}
}
pkg[field] = sortPropertiesAlphabetically(pkg[field] as Record<string, string>);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dependencies": {
"@skeletonlabs/skeleton-react": "next"
"@skeletonlabs/skeleton-react": "^4.0.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dependencies": {
"@skeletonlabs/skeleton-svelte": "next"
"@skeletonlabs/skeleton-svelte": "^4.0.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dependencies": {
"@skeletonlabs/skeleton": "next"
"@skeletonlabs/skeleton": "^4.0.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Learn how to install the Skeleton core into your Astro project. We'll cover usin
### Install Skeleton
Install the Skeleton core package for the Tailwind plugin.
```console
npm i -D @skeletonlabs/skeleton@next
npm i -D @skeletonlabs/skeleton
```
</ProcessStep>
<ProcessStep step="3">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import Process from '@/components/ui/process.astro';
### Install Skeleton
Install the Skeleton core and React component packages.
```console
npm i -D @skeletonlabs/skeleton@next @skeletonlabs/skeleton-react@next
npm i -D @skeletonlabs/skeleton @skeletonlabs/skeleton-react
```
</ProcessStep>
<ProcessStep step="4">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The exact instructions for installing Skeleton will differ per framework, howeve
### Install Skeleton
Install the Skeleton core package to gain access to most features - excluding Components.
```console
npm i -D @skeletonlabs/skeleton@next
npm i -D @skeletonlabs/skeleton
```
</ProcessStep>
<ProcessStep step="4">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import Process from '@/components/ui/process.astro';
### Install Skeleton
Install the Skeleton core and Svelte component packages.
```console
npm i -D @skeletonlabs/skeleton@next @skeletonlabs/skeleton-svelte@next
npm i -D @skeletonlabs/skeleton @skeletonlabs/skeleton-svelte
```
</ProcessStep>
<ProcessStep step="3">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import Process from '@/components/ui/process.astro';
### Install Skeleton
Install the Skeleton core and React component packages.
```console
npm i -D @skeletonlabs/skeleton@next @skeletonlabs/skeleton-react@next
npm i -D @skeletonlabs/skeleton @skeletonlabs/skeleton-react
```
</ProcessStep>
<ProcessStep step="3">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import Process from '@/components/ui/process.astro';
### Install Skeleton
Install the Skeleton core and Svelte component packages.
```console
npm i -D @skeletonlabs/skeleton@next @skeletonlabs/skeleton-svelte@next
npm i -D @skeletonlabs/skeleton @skeletonlabs/skeleton-svelte
```
</ProcessStep>
<ProcessStep step="3">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Make sure you've accounted for the following:
To begin, we will run a quick automated migration.

```console
npx skeleton@next migrate skeleton-4
npx skeleton migrate skeleton-4
```

This will handle the package and stylesheet updates in the next couple steps. If you opt for the CLI, feel free to skip down to the [Manual Migration](/docs/get-started/migrate-from-v3#manual-migration) steps below. Note the manual steps are required for all migrations.
Expand All @@ -44,15 +44,13 @@ For the Release Candidate, please update each Skeleton package to the early acce
**React**

```console
npm remove @skeletonlabs/skeleton @skeletonlabs/skeleton-react
npm i -D @skeletonlabs/skeleton@next @skeletonlabs/skeleton-react@next
npm install @skeletonlabs/skeleton@latest @skeletonlabs/skeleton-react@latest
```

**Svelte**

```console
npm remove @skeletonlabs/skeleton @skeletonlabs/skeleton-svelte
npm i -D @skeletonlabs/skeleton@next @skeletonlabs/skeleton-svelte@next
npm install @skeletonlabs/skeleton@latest @skeletonlabs/skeleton-svelte@latest
```

### Update Stylesheet Imports
Expand Down