@antora/run-command-helper
Advanced tools
Comparing version 1.0.0-rc.4 to 1.0.0-rc.5
'use strict' | ||
const ESCAPE_CHARS_MAP = Array.from(' "=<>&%^|').reduce((accum, c) => Object.assign(accum, { [c]: true }), {}) | ||
const ESCAPE_CHARS_MAP = Array.from(' "<>&%^|').reduce((accum, c) => Object.assign(accum, { [c]: true }), {}) | ||
const ESCAPE_CHARS_RX = new RegExp('[' + Object.keys(ESCAPE_CHARS_MAP).join('') + ']') | ||
@@ -5,0 +5,0 @@ const ESCAPE_RS_RX = /\\+(?=")/g |
{ | ||
"name": "@antora/run-command-helper", | ||
"version": "1.0.0-rc.4", | ||
"version": "1.0.0-rc.5", | ||
"description": "Provides a helper function to run an external command uniformly across platforms with numerous options to control how stdio is handled.", | ||
@@ -5,0 +5,0 @@ "license": "MPL-2.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38805