diff options
author | Peter Wilson <peterwilsoncc@git.wordpress.org> | 2025-03-18 02:59:09 +0000 |
---|---|---|
committer | Peter Wilson <peterwilsoncc@git.wordpress.org> | 2025-03-18 02:59:09 +0000 |
commit | 76a2ed752c6ff6aa05b9e791f027730cd0f5cbd7 (patch) | |
tree | a082d29008056c43ff1d0c9ccfe57e3b193d270e /Gruntfile.js | |
parent | 71732ba84e508d29ec35fb30e797653f5dd779e7 (diff) | |
download | wordpress-76a2ed752c6ff6aa05b9e791f027730cd0f5cbd7.tar.gz wordpress-76a2ed752c6ff6aa05b9e791f027730cd0f5cbd7.zip |
Emoji: Update the Twemoji library to 15.1.0.
This version adds support for the latest emoji added in Unicode Emoji 15.1.
I will rise like a phoenix 🐦🔥 but you’re my flame 🔥.
Props audrasjb, azaozz, hbhalodia, jorbin, sergeybiryukov, sirlouen.
Fixes #63064.
git-svn-id: https://develop.svn.wordpress.org/trunk@60035 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 09ce2317e2..64651fece8 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1141,7 +1141,7 @@ module.exports = function(grunt) { } // Fetch a list of the files that Twemoji supplies. - query = 'query={repository(owner: "jdecked", name: "twemoji") {object(expression: "v15.0.3:assets/svg") {... on Tree {entries {name}}}}}'; + query = 'query={repository(owner: "jdecked", name: "twemoji") {object(expression: "v15.1.0:assets/svg") {... on Tree {entries {name}}}}}'; files = spawn( 'gh', [ 'api', 'graphql', '-f', query] ); if ( 0 !== files.status ) { |