1
0
Fork 0

Adding upstream version 1.9.1+dfsg.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-17 07:10:40 +01:00
parent c6123b914a
commit dafef1aa3b
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
1847 changed files with 36221 additions and 0 deletions

36
.fantasticonrc.js Normal file
View file

@ -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'
}
}