File tree 5 files changed +59
-4
lines changed
sites/skeleton.dev/src/routes/(inner)
contributing/requirements
5 files changed +59
-4
lines changed Original file line number Diff line number Diff line change
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 }}
Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
- Copyright (c) 2023 Skeleton Labs, LLC
3
+ Copyright (c) 2024-Preset Skeleton Labs, LLC
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 225
225
<section class =" space-y-4" >
226
226
<h2 class =" h2" >Dependencies</h2 >
227
227
<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
229
229
requests that introduce new dependencies without approval will be rejected.
230
230
</p >
231
231
</section >
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ plugins: [
172
172
</p >
173
173
<CodeBlock language ="html" code ={` <html class="dark"> ` } />
174
174
<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
176
176
toggle between light and dark modes.
177
177
</p >
178
178
</section >
Original file line number Diff line number Diff line change @@ -396,7 +396,7 @@ new Promise<boolean>((resolve) => {
396
396
{#if tabCustom === ' register' }
397
397
<p >
398
398
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 >.
400
400
</p >
401
401
<CodeBlock
402
402
language =" ts"
You can’t perform that action at this time.
0 commit comments