Attempt once again to remove PARCEL_WORKERS env var
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Isaac Mills 2025-07-13 07:36:31 -06:00
parent f84b0d8c0d
commit ba9aa14f2c
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
3 changed files with 9 additions and 7 deletions

View file

@ -3,7 +3,6 @@ steps:
image: node:22-slim
environment:
PNPM_HOME: /pnpm
PARCEL_WORKERS: 0
commands:
- corepack enable
- pnpm install

View file

@ -14,15 +14,17 @@
<if condition="text != '' && !$slots.text?.filled">
<p style="font-size: 200px; text-align: center; margin: 0; padding: 0;">{{text}}</p>
</if>
<slot:title />
<div class="links">
<slot:links></slot:links>
</div>
<slot:title></slot:title>
<if condition="$slots.links?.filled">
<div class="links">
<slot:links></slot:links>
</div>
</if>
</div>
<div class="description">
<div onclick="{{onclick}}" style="{{headerstyle}}">
<slot:subtitle />
<slot:subtitle></slot:subtitle>
</div>
<slot:description />
<slot:description></slot:description>
</div>
</div>

View file

@ -237,6 +237,7 @@ a {
background-color: transparent;
border: solid 3px #999;
font-size: 16pt;
padding: 8px;
}
.tab-list a[aria-selected=true] {