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 image: node:22-slim
environment: environment:
PNPM_HOME: /pnpm PNPM_HOME: /pnpm
PARCEL_WORKERS: 0
commands: commands:
- corepack enable - corepack enable
- pnpm install - pnpm install

View file

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

View file

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