diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-07-22 19:27:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-07-23 08:52:25 +0000 |
commit | 78edec0e2d8a3e1216d99234554276cb05505ac4 (patch) | |
tree | 6f1a3cfda8731ef3a19f5ae57c928054a0c5624f /.fantasticonrc.js | |
parent | Initial commit. (diff) | |
download | bootstrap-icons-78edec0e2d8a3e1216d99234554276cb05505ac4.tar.xz bootstrap-icons-78edec0e2d8a3e1216d99234554276cb05505ac4.zip |
Adding upstream version 1.9.1+dfsg.upstream/1.9.1+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.fantasticonrc.js')
-rw-r--r-- | .fantasticonrc.js | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/.fantasticonrc.js b/.fantasticonrc.js new file mode 100644 index 0000000..6a561f1 --- /dev/null +++ b/.fantasticonrc.js @@ -0,0 +1,36 @@ +'use strict' + +const codepoints = require('./font/bootstrap-icons.json') + +module.exports = { + inputDir: './icons', // (required) + outputDir: './font', // (required) + fontTypes: ['woff2', 'woff'], + assetTypes: ['css', 'scss', 'json', 'html'], + name: 'bootstrap-icons', + codepoints, + prefix: 'bi', + selector: '.bi', + fontsUrl: './fonts', + formatOptions: { + json: { + indent: 2 + } + }, + // Use a custom Handlebars template + templates: { + css: './build/font/css.hbs', + scss: './build/font/scss.hbs', + html: './build/font/html.hbs' + }, + pathOptions: { + json: './font/bootstrap-icons.json', + css: './font/bootstrap-icons.css', + scss: './font/bootstrap-icons.scss', + html: './font/index.html', + ttf: './font/fonts/bootstrap-icons.ttf', + woff: './font/fonts/bootstrap-icons.woff', + woff2: './font/fonts/bootstrap-icons.woff2', + eot: './font/fonts/bootstrap-icons.eot' + } +} |