Filter out unsupported emoji from the emoji meta data
Because apparently emojione provides meta data for more than the emojis it supports itself. Fixes https://github.com/vector-im/riot-web/issues/4504pull/21833/head
parent
5c9d3edec4
commit
2de4dd7b71
|
@ -1,5 +1,6 @@
|
|||
#!/usr/bin/env node
|
||||
const EMOJI_DATA = require('emojione/emoji.json');
|
||||
const EMOJI_SUPPORTED = Object.keys(require('emojione').emojioneList);
|
||||
const fs = require('fs');
|
||||
|
||||
const output = Object.keys(EMOJI_DATA).map(
|
||||
|
@ -16,7 +17,9 @@ const output = Object.keys(EMOJI_DATA).map(
|
|||
}
|
||||
return newDatum;
|
||||
}
|
||||
);
|
||||
).filter((datum) => {
|
||||
return EMOJI_SUPPORTED.includes(datum.shortname);
|
||||
});
|
||||
|
||||
// Write to a file in src. Changes should be checked into git. This file is copied by
|
||||
// babel using --copy-files
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue