diff options
Diffstat (limited to '')
-rw-r--r-- | build/bump-version.mjs | 6 | ||||
-rw-r--r-- | build/font/css.hbs | 2 | ||||
-rw-r--r-- | build/font/scss.hbs | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/build/bump-version.mjs b/build/bump-version.mjs index d08d0a9..5f07415 100644 --- a/build/bump-version.mjs +++ b/build/bump-version.mjs @@ -6,8 +6,8 @@ * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) */ -const { execFile } = require('node:child_process') -const fs = require('node:fs').promises +import { execFile } from 'node:child_process' +import fs from 'node:fs/promises' const VERBOSE = process.argv.includes('--verbose') const DRY_RUN = process.argv.includes('--dry') || process.argv.includes('--dry-run') @@ -16,7 +16,7 @@ const DRY_RUN = process.argv.includes('--dry') || process.argv.includes('--dry-r const FILES = [ 'build/font/css.hbs', 'build/font/scss.hbs', - 'config.yml' + 'hugo.yml' ] // Blame TC39... https://github.com/benjamingr/RegExp.escape/issues/37 diff --git a/build/font/css.hbs b/build/font/css.hbs index 76f27ce..8ce7959 100644 --- a/build/font/css.hbs +++ b/build/font/css.hbs @@ -1,5 +1,5 @@ /*! - * Bootstrap Icons v1.10.5 (https://icons.getbootstrap.com/) + * Bootstrap Icons v1.11.1 (https://icons.getbootstrap.com/) * Copyright 2019-2023 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) */ diff --git a/build/font/scss.hbs b/build/font/scss.hbs index e3bfaf0..1453d25 100644 --- a/build/font/scss.hbs +++ b/build/font/scss.hbs @@ -1,5 +1,5 @@ /*! - * Bootstrap Icons v1.10.5 (https://icons.getbootstrap.com/) + * Bootstrap Icons v1.11.1 (https://icons.getbootstrap.com/) * Copyright 2019-2023 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) */ |