mirror of
https://github.com/twitter/twemoji.git
synced 2024-12-26 00:15:54 +00:00
c78b889b61
Signed-off-by: Chris Aniszczyk <zx@twitter.com>
40 lines
902 B
JavaScript
Executable File
40 lines
902 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
/*! Copyright Twitter Inc. and other contributors. Licensed under MIT *//*
|
|
https://github.com/twitter/twemoji/blob/gh-pages/LICENSE
|
|
*/
|
|
|
|
var fs = require('fs');
|
|
|
|
fs.writeFileSync(
|
|
'twemoji.npm.js',
|
|
fs.readFileSync('twemoji.js') + '\nmodule.exports = twemoji;'
|
|
);
|
|
|
|
fs.writeFileSync(
|
|
'twemoji.amd.js',
|
|
'define(function () {\n' +
|
|
fs.readFileSync('twemoji.js').toString().replace(
|
|
/^(.)/gm, ' $1'
|
|
) +
|
|
'\n return twemoji;\n});'
|
|
);
|
|
|
|
require('child_process').spawn(
|
|
'node',
|
|
[
|
|
'node_modules/uglify-js/bin/uglifyjs',
|
|
'--verbose',
|
|
'twemoji.js',
|
|
'-o',
|
|
'twemoji.tmp.js'
|
|
]
|
|
).on('close', function () {
|
|
fs.writeFileSync(
|
|
'twemoji.min.js',
|
|
'/*! Copyright Twitter Inc. and other contributors. Licensed under MIT */\n' +
|
|
fs.readFileSync('twemoji.tmp.js')
|
|
);
|
|
fs.unlink('twemoji.tmp.js');
|
|
// gzip -c twemoji.min.js | wc -c
|
|
}); |