summaryrefslogtreecommitdiffstats
path: root/build/vnu-jar.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-05-03 09:10:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-05-03 09:10:03 +0000
commit9aeff034f5cdf4e22090904bf9dfecf439b34658 (patch)
tree7ed7a2f5bc0291104a79f90f547c4b250e50c21b /build/vnu-jar.js
parentReleasing debian version 1.10.4+dfsg-1. (diff)
downloadbootstrap-icons-9aeff034f5cdf4e22090904bf9dfecf439b34658.tar.xz
bootstrap-icons-9aeff034f5cdf4e22090904bf9dfecf439b34658.zip
Merging upstream version 1.10.5+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build/vnu-jar.js')
-rw-r--r--build/vnu-jar.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/build/vnu-jar.js b/build/vnu-jar.js
deleted file mode 100644
index c87d518..0000000
--- a/build/vnu-jar.js
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/usr/bin/env node
-
-/*!
- * Script to run vnu-jar if Java is available.
- * Copyright 2017-2023 The Bootstrap Authors
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
- */
-
-'use strict'
-
-const { execFile, spawn } = require('node:child_process')
-const vnu = require('vnu-jar')
-
-execFile('java', ['-version'], (error, stdout, stderr) => {
- if (error) {
- console.error('Skipping vnu-jar test; Java is probably missing.')
- console.error(error)
- return
- }
-
- console.log('Running vnu-jar validation...')
-
- const is32bitJava = !/64-Bit/.test(stderr)
-
- // vnu-jar accepts multiple ignores joined with a `|`.
- // Also note that the ignores are string regular expressions.
- const ignores = [
- ].join('|')
-
- const args = [
- '-jar',
- `"${vnu}"`,
- '--asciiquotes',
- '--skip-non-html',
- '--Werror',
- `--filterpattern "${ignores}"`,
- '_site/'
- ]
-
- // For the 32-bit Java we need to pass `-Xss512k`
- if (is32bitJava) {
- args.splice(0, 0, '-Xss512k')
- }
-
- console.log(`command used: java ${args.join(' ')}`)
-
- return spawn('java', args, {
- shell: true,
- stdio: 'inherit'
- })
- .on('exit', process.exit)
-})