Skip to content

Commit de1d865

Browse files
committed
add blahaj
1 parent a25a951 commit de1d865

4 files changed

Lines changed: 18 additions & 0 deletions

File tree

.github/ISSUE_TEMPLATE/sighting.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ body:
4242
description: If it's not listed, pick "other / not listed" and describe it below.
4343
options:
4444
- Djungelorm (the green snake)
45+
- Blåhaj (the blue shark)
4546
- other / not listed
4647
validations:
4748
required: true

.husky/pre-commit

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1+
#!/bin/sh
2+
staged=$(git diff --cached --name-only --diff-filter=ACMR)
3+
14
npx biome check --staged --write --no-errors-on-unmatched --files-ignore-unknown=true
5+
6+
# Biome --write updates the working tree but not the index; re-stage so fixes land in the commit.
7+
if [ -n "$staged" ]; then
8+
echo "$staged" | xargs git add
9+
fi

src/content/sightings/blahaj/images/.gitkeep

Whitespace-only changes.

src/plushes.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ export const plushes: Plush[] = [
1919
blurb:
2020
"IKEA's beloved green snake plush. Nearly five feet of cuddly serpent that keeps slithering its way onto the big screen.",
2121
},
22+
{
23+
id: 'blahaj',
24+
name: 'Blåhaj',
25+
fullName: 'IKEA Blåhaj Shark',
26+
emoji: '🦈',
27+
color: '#6CA7B5',
28+
blurb:
29+
"IKEA's beloved blue shark plush. Big and safe to have by your side if you want to discover the world below the surface of the ocean. The blue shark can swim very far, dive really deep and hear noises from almost 250 meters away.",
30+
},
2231
];
2332

2433
export const plushById = (id: string): Plush | undefined =>

0 commit comments

Comments
 (0)