Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: muan/emojilib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.12
Choose a base ref
...
head repository: muan/emojilib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref

Commits on Mar 28, 2024

  1. Up node version

    muan committed Mar 28, 2024
    Copy the full SHA
    2f4dc60 View commit details
  2. Upgrade setup-node

    muan committed Mar 28, 2024
    Copy the full SHA
    b2993a9 View commit details
  3. Checkout@v4

    muan committed Mar 28, 2024
    Copy the full SHA
    4c26b9d View commit details
  4. Switch to maintained xml parser

    muan committed Mar 28, 2024
    Copy the full SHA
    574b14c View commit details
  5. Only test JSON files

    muan committed Mar 28, 2024
    Copy the full SHA
    f30412f View commit details
  6. Improve test message

    muan committed Mar 28, 2024
    Copy the full SHA
    0e7aca3 View commit details

Commits on Mar 30, 2024

  1. Copy the full SHA
    30b1edf View commit details

Commits on Jun 16, 2024

  1. Copy the full SHA
    af05d90 View commit details
  2. Copy the full SHA
    4079c9e View commit details

Commits on Jun 17, 2024

  1. Merge branch 'main'

    JoshuaKGoldberg committed Jun 17, 2024
    Copy the full SHA
    831aa68 View commit details

Commits on Sep 30, 2024

  1. Copy the full SHA
    e74c331 View commit details
  2. 4.0.0

    muan committed Sep 30, 2024
    Copy the full SHA
    47953bd View commit details

Commits on Oct 16, 2024

  1. ✨ added gitmoji.dev keywords

    Signed-off-by: Danil Schumin <d.schumin@proton.me>
    xaiyadev committed Oct 16, 2024
    Copy the full SHA
    a638def View commit details

Commits on Oct 20, 2024

  1. 🔥 removed package-lock.json

    Signed-off-by: Danil Schumin <d.schumin@proton.me>
    xaiyadev committed Oct 20, 2024
    Copy the full SHA
    bdec1d9 View commit details
  2. 🚑 removed changed code in package-lock.json

    Signed-off-by: Danil Schumin <d.schumin@proton.me>
    xaiyadev committed Oct 20, 2024
    Copy the full SHA
    271b33b View commit details
  3. 🚑 removed lcense in package-lock.json

    Signed-off-by: Danil Schumin <d.schumin@proton.me>
    xaiyadev committed Oct 20, 2024
    Copy the full SHA
    1a58db6 View commit details

Commits on Oct 23, 2024

  1. Apply suggestions from code review

    Co-authored-by: Mu-An Chiou <me@muanchiou.com>
    xaiyadev and muan authored Oct 23, 2024
    Copy the full SHA
    4ae36c1 View commit details

Commits on Oct 30, 2024

  1. Copy the full SHA
    c0b0e73 View commit details

Commits on Dec 13, 2024

  1. Copy the full SHA
    a3b250f View commit details
  2. Copy the full SHA
    3588c23 View commit details
  3. 4.0.1

    muan committed Dec 13, 2024
    Copy the full SHA
    b235d35 View commit details
Showing with 8,242 additions and 1,823 deletions.
  1. +3 −3 .github/workflows/test.yml
  2. +8 −1 CONTRIBUTING.md
  3. +7,752 −1,736 dist/emoji-en-US.json
  4. +278 −78 package-lock.json
  5. +5 −2 package.json
  6. +192 −0 scripts/augment-en.js
  7. +2 −2 scripts/i18n.js
  8. +2 −1 scripts/test.js
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -7,10 +7,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 15.x
node-version: 20
- run: npm ci
- run: npm test
9 changes: 8 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -82,4 +82,11 @@ Is "happy" a suitable keyword for 😀? (y/n/e) y
Is "joy" a suitable keyword for 😀? (y/n/e) y
Is ":D" a suitable keyword for 😀? (y/n/e) n
[saved] 😀: grinning face, face, smile, happy, joy, grin
```
```

- **Augment dataset** with `npm run augment-en` to bring in en-US keywords used in common emoji platforms

```
$ npm run augment-en
Augmented 123 emoji with a total of 456 keyword(s)
```
Loading