Skip to content

Instantly share code, notes, and snippets.

@tgfjt
Created June 24, 2020 09:44
Show Gist options
  • Save tgfjt/1ad10a79a056d2ae91b123ec17af956e to your computer and use it in GitHub Desktop.
Save tgfjt/1ad10a79a056d2ae91b123ec17af956e to your computer and use it in GitHub Desktop.
const webfontsGenerator = require('webfonts-generator');
webfontsGenerator({
fontName: 'demo',
html: false,
css: false,
files: [
'A.svg',
'B.svg',
],
startCodepoint: 0x41, // A
dest: 'dest/',
}, function(error) {
if (error) {
console.log('Fail!', error);
} else {
console.log('Done!');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment