Strip the emoji meta-data for the data we need

This is done at build time by parsing emojione/emoji.json, stripping it and then writing to ./lib/stripped-emoji.json.
This commit is contained in:
Luke Barnard
2017-06-28 11:36:19 +01:00
parent 8ca3b382ed
commit 2b8da85726
3 changed files with 21 additions and 3 deletions
+3 -2
View File
@@ -33,8 +33,9 @@
"scripts": {
"reskindex": "node scripts/reskindex.js -h header",
"reskindex:watch": "node scripts/reskindex.js -h header -w",
"build": "npm run reskindex && babel src -d lib --source-maps",
"build:watch": "babel src -w -d lib --source-maps",
"build": "npm run emoji-data-strip && npm run reskindex && babel src -d lib --source-maps",
"build:watch": "npm run emoji-data-strip && babel src -w -d lib --source-maps",
"emoji-data-strip": "node scripts/emoji-data-strip.js",
"start": "parallelshell \"npm run build:watch\" \"npm run reskindex:watch\"",
"lint": "eslint src/",
"lintall": "eslint src/ test/",