Skip to content

Commit 7f907be

Browse files
committed
build v1.23.0
1 parent 936c896 commit 7f907be

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

dist/setup/index.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56644,7 +56644,7 @@ class Range {
5664456644
this.set = this.raw
5664556645
.split('||')
5664656646
// map the range to a 2d array of comparators
56647-
.map(r => this.parseRange(r))
56647+
.map(r => this.parseRange(r.trim()))
5664856648
// throw out any comparator lists that are empty
5664956649
// this generally means that it was not a valid range, which is allowed
5665056650
// in loose mode, but will still throw if the WHOLE range is invalid.
@@ -58116,7 +58116,11 @@ module.exports = parseOptions
5811658116
/***/ 9523:
5811758117
/***/ ((module, exports, __nccwpck_require__) => {
5811858118

58119-
const { MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH } = __nccwpck_require__(2293)
58119+
const {
58120+
MAX_SAFE_COMPONENT_LENGTH,
58121+
MAX_SAFE_BUILD_LENGTH,
58122+
MAX_LENGTH,
58123+
} = __nccwpck_require__(2293)
5812058124
const debug = __nccwpck_require__(106)
5812158125
exports = module.exports = {}
5812258126

@@ -58137,7 +58141,7 @@ const LETTERDASHNUMBER = '[a-zA-Z0-9-]'
5813758141
// all input should have extra whitespace removed.
5813858142
const safeRegexReplacements = [
5813958143
['\\s', 1],
58140-
['\\d', MAX_SAFE_COMPONENT_LENGTH],
58144+
['\\d', MAX_LENGTH],
5814158145
[LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH],
5814258146
]
5814358147

dist/setup/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)