Merge pull request #1187 from matrix-org/luke/fix-rte-emoji-filter-supported

Filter out unsupported emoji from the emoji meta data
pull/21833/head
Luke Barnard 2017-07-05 18:21:50 +01:00 committed by GitHub
commit 14ddf4e2aa
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