From ecd7d1e2037d577de3b898b45c13f8115c03fdf6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 20 Sep 2023 11:16:14 +0200 Subject: Adding upstream version 1.11.1+dfsg. Signed-off-by: Daniel Baumann --- build/bump-version.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build/bump-version.mjs') 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 -- cgit v1.2.3