Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2022-03-11 12:38:02 +0300
committerGitHub <noreply@github.com>2022-03-11 12:38:02 +0300
commitc637cde2d99f9338b6b2013e3f8d1418a888b45d (patch)
tree80d046e3ca646f2256074f68b169bb78d1968741 /.fantasticonrc.js
parente00a853a0e65c084aa0a554eab213b7b9577b5dd (diff)
Update build scripts from upstream and minor lint tweaks (#1260)
Diffstat (limited to '.fantasticonrc.js')
-rw-r--r--.fantasticonrc.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/.fantasticonrc.js b/.fantasticonrc.js
index aded92c19..6a561f176 100644
--- a/.fantasticonrc.js
+++ b/.fantasticonrc.js
@@ -1,4 +1,6 @@
-const codepoints = require('./font/bootstrap-icons.json');
+'use strict'
+
+const codepoints = require('./font/bootstrap-icons.json')
module.exports = {
inputDir: './icons', // (required)
@@ -6,7 +8,7 @@ module.exports = {
fontTypes: ['woff2', 'woff'],
assetTypes: ['css', 'scss', 'json', 'html'],
name: 'bootstrap-icons',
- codepoints: codepoints,
+ codepoints,
prefix: 'bi',
selector: '.bi',
fontsUrl: './fonts',
@@ -31,4 +33,4 @@ module.exports = {
woff2: './font/fonts/bootstrap-icons.woff2',
eot: './font/fonts/bootstrap-icons.eot'
}
-};
+}