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/4504
pull/21833/head
Luke Barnard 2017-07-05 17:09:16 +01:00
parent 5c9d3edec4
commit 2de4dd7b71
2 changed files with 5 additions and 2 deletions

View File

@ -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