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:54:15 -06:00
parent 1311b775ac
commit 1a60e1b844
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
6 changed files with 57 additions and 44 deletions

View file

@ -1,30 +0,0 @@
<script props>
module.exports = {
text: props.text || '',
onclick: props.onclick || '',
titlestyle: 'min-width: 275px;' + (props.titlestyle || ''),
headerstyle: props.headerstyle || '',
}
</script>
<div class="project">
<div class="project-title" style="{{titlestyle}}">
<div class="figure">
<slot:img></slot:img>
</div>
<if condition="text != '' && !$slots.img?.filled">
<p style="font-size: 200px; text-align: center; margin: 0; padding: 0;">{{text}}</p>
</if>
<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>
</div>
<slot:description></slot:description>
</div>
</div>