mirror of
https://github.com/twitter/twemoji.git
synced 2024-06-15 03:35:16 +00:00
Generate sha384 for SRI; update script tags
This commit is contained in:
parent
c116c26cbc
commit
91e9e4b068
@ -4,12 +4,12 @@
|
|||||||
https://github.com/twitter/twemoji/blob/gh-pages/LICENSE
|
https://github.com/twitter/twemoji/blob/gh-pages/LICENSE
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var fs = require('fs');
|
const fs = require('fs');
|
||||||
var path = require('path');
|
const path = require('path');
|
||||||
var { spawnSync } = require('child_process');
|
const { spawnSync } = require('child_process');
|
||||||
|
|
||||||
function file(which) {
|
function file(...which) {
|
||||||
return path.join(__dirname, '..', which);
|
return path.join(__dirname, '..', ...which);
|
||||||
}
|
}
|
||||||
|
|
||||||
fs.writeFileSync(
|
fs.writeFileSync(
|
||||||
@ -50,3 +50,20 @@ fs.writeFileSync(
|
|||||||
fs.readFileSync(file('twemoji.tmp.js'))
|
fs.readFileSync(file('twemoji.tmp.js'))
|
||||||
);
|
);
|
||||||
fs.unlinkSync(file('twemoji.tmp.js'));
|
fs.unlinkSync(file('twemoji.tmp.js'));
|
||||||
|
|
||||||
|
const algorithm = 'sha384';
|
||||||
|
const digest = spawnSync('openssl', ['dgst', `-${algorithm}`, '-binary', file('twemoji.min.js')]);
|
||||||
|
if (digest.status || digest.signal){
|
||||||
|
throw new Error(digest.stderr.toString('utf8'));
|
||||||
|
}
|
||||||
|
const integrity = `integrity="${algorithm}-${digest.stdout.toString('base64')}"`;
|
||||||
|
|
||||||
|
function updateIntegrity(filename) {
|
||||||
|
fs.writeFileSync(
|
||||||
|
filename,
|
||||||
|
fs.readFileSync(filename).toString('utf8').replace(/integrity="[^ ]*"/, integrity));
|
||||||
|
}
|
||||||
|
|
||||||
|
updateIntegrity(file('..', 'README.md'));
|
||||||
|
updateIntegrity(file('templates', 'preview.html'));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user