Skip to content

Commit bf0e2c7

Browse files
committed
Use .mts extension
1 parent f398eba commit bf0e2c7

5 files changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/ghpages-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Process UCD XML to JSON
3535
run: |
3636
./bin/ucd_download.sh
37-
./bin/ucd_to_json.ts
37+
./bin/ucd_to_json.mts
3838
3939
- name: Set Status Info
4040
run: |

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ See it in action: [emojisearch.org](https://www.emojisearch.org/)
2727

2828
## To Do
2929

30-
- [ ] bigger font for example column
30+
- [ ] images
31+
- [ ] detail columns
32+
- [ ] better formatting of codepoint(s) column w/multiple
3133
- [ ] test dark mode
3234
- [ ] share links in footer

bin/package.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

bin/ucd_download.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env bash
22
#
3-
# Download and unzip the emoji test file
4-
# from Unicode.org.
3+
# Download and unzip the emoji test file from Unicode.org.
54
#
65

76
set -o nounset
@@ -11,7 +10,7 @@ set -o pipefail
1110
SCRIPT_HOME="$( cd "$( dirname "$0" )" && pwd )"
1211
BASE_DIR=$(realpath "${SCRIPT_HOME}/..")
1312

14-
echo "INFO: starting download at $(date -u +"%Y-%m-%dT%H:%M:%SZ")"
13+
echo "INFO: starting ucd download at $(date -u +"%Y-%m-%dT%H:%M:%SZ")"
1514

1615
TMP_DIR="${BASE_DIR}/tmp"
1716
if [ ! -d "${TMP_DIR}" ]; then
@@ -28,4 +27,4 @@ curl \
2827
--silent \
2928
https://www.unicode.org/Public/17.0.0/emoji/emoji-test.txt
3029

31-
echo "INFO: completed download at $(date -u +"%Y-%m-%dT%H:%M:%SZ")"
30+
echo "INFO: completed ucd download at $(date -u +"%Y-%m-%dT%H:%M:%SZ")"
File renamed without changes.

0 commit comments

Comments
 (0)