1
0
mirror of https://github.com/twitter/twemoji.git synced 2024-10-01 12:24:23 +00:00

added simple size utility and updated package.json

This commit is contained in:
Andrea Giammarchi 2016-03-02 19:18:16 +00:00
parent b2738a248e
commit 39e0a526f8
2 changed files with 7 additions and 1 deletions

6
2/utils/size Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
echo "twemoji.js $(cat 2/twemoji.js | wc -c)"
echo "twemoji.js gzipped $(gzip -c 2/twemoji.js | wc -c)"
echo "twemoji.min.js $(cat 2/twemoji.min.js | wc -c)"
echo "twemoji.min.js gzipped $(gzip -c 2/twemoji.min.js | wc -c)"

View File

@ -1,5 +1,5 @@
{
"version": "2.0.2",
"version": "2.0.3",
"name": "twemoji",
"license": ["MIT", "CC-BY-4.0"],
"description": "A Unicode 8 standard based way to implement emoji across all platforms.",