1
0
Fork 0

Merging upstream version 1.11.1+dfsg.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-17 07:16:06 +01:00
parent 9f1690fb96
commit 2a6ced996a
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
114 changed files with 2264 additions and 1618 deletions

View file

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