Skip to content

Commit 06a4639

Browse files
authored
Merge pull request #2708 from skeletonlabs/dev
Merge for Release June 4, 2024
2 parents da3b8c0 + 95567ea commit 06a4639

File tree

5 files changed

+59
-4
lines changed

5 files changed

+59
-4
lines changed

.github/workflows/release-next.yml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: Publish Skeleton (next)
2+
on:
3+
push:
4+
branches:
5+
- next
6+
7+
concurrency: ${{ github.workflow }}-${{ github.ref }}
8+
9+
jobs:
10+
release:
11+
name: Build & Publish @next Release
12+
if: github.repository == 'skeletonlabs/skeleton'
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout Repo
16+
uses: actions/checkout@v3
17+
with:
18+
fetch-depth: 0
19+
20+
- name: Use PNPM v8
21+
uses: pnpm/action-setup@v2
22+
with:
23+
version: 8
24+
25+
- name: Use Node v18
26+
uses: actions/setup-node@v3
27+
with:
28+
node-version: 18
29+
30+
# PNPM Store cache setup
31+
- name: Get pnpm store directory
32+
id: pnpm-cache
33+
run: |
34+
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
35+
- name: Setup pnpm cache
36+
uses: actions/cache@v3
37+
with:
38+
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
39+
key: ${{ runner.os }}-pnpm-store-next-${{ hashFiles('**/pnpm-lock.yaml') }}
40+
restore-keys: |
41+
${{ runner.os }}-pnpm-store-next-
42+
43+
- name: Install dependencies
44+
run: pnpm install
45+
46+
- name: Create Release Pull Request or Publish
47+
id: changesets
48+
uses: changesets/action@v1
49+
with:
50+
commit: "chore(release): version package"
51+
title: "chore(release): version package"
52+
publish: pnpm ci:release
53+
env:
54+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
55+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Skeleton Labs, LLC
3+
Copyright (c) 2024-Preset Skeleton Labs, LLC
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

sites/skeleton.dev/src/routes/(inner)/docs/contributing/requirements/+page.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@
225225
<section class="space-y-4">
226226
<h2 class="h2">Dependencies</h2>
227227
<p>
228-
Introducing new dependencies to projects is strictly prohibited. Please sync with a core core maintainer if this is required. Pull
228+
Introducing new dependencies to projects is strictly prohibited. Please sync with a core maintainer if this is required. Pull
229229
requests that introduce new dependencies without approval will be rejected.
230230
</p>
231231
</section>

sites/skeleton.dev/src/routes/(inner)/docs/themes/+page.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ plugins: [
172172
</p>
173173
<CodeBlock language="html" code={`<html class="dark">`} />
174174
<p>
175-
Note that Skeleton also provides a <a class="anchor" href="/utilities/lightswitches" target="_blank">Lightswitch</a> utility if you wish
175+
Note that Skeleton also provides a <a class="anchor" href="/docs/dark-mode#via-selector" target="_blank">Lightswitch</a> utility if you wish
176176
toggle between light and dark modes.
177177
</p>
178178
</section>

sites/skeleton.dev/src/routes/(inner)/utilities/modals/+page.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ new Promise<boolean>((resolve) => {
396396
{#if tabCustom === 'register'}
397397
<p>
398398
This will create a set of reusable custom modals that are globally available to your application. Add the following to your
399-
your root layout in <code class="code">/src/routes/+layout.svelte</code>.
399+
root layout in <code class="code">/src/routes/+layout.svelte</code>.
400400
</p>
401401
<CodeBlock
402402
language="ts"

0 commit comments

Comments
 (0)