forked from q/element-web-patches
21 lines
377 B
Bash
21 lines
377 B
Bash
|
#!/bin/sh
|
||
|
# Run fetch-latest-format.sh for the most up-to-date emojibase format. Target is raw.json
|
||
|
reactions="$(yq . /dev/stdin < reactions.yaml)"
|
||
|
jq -n --argjson reactions "$reactions" \
|
||
|
'[
|
||
|
$reactions[] | {
|
||
|
label: .,
|
||
|
hexcode: "2721",
|
||
|
tags: [ . ],
|
||
|
emoji: .,
|
||
|
text: .,
|
||
|
type: 0,
|
||
|
order: 0,
|
||
|
group: 8,
|
||
|
subgroup: 93,
|
||
|
version: 0.7
|
||
|
}
|
||
|
]'
|
||
|
|
||
|
|