mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-26 21:13:38 +00:00
update dist
This commit is contained in:
parent
32d444f1ca
commit
86564228ba
1 changed files with 24 additions and 10 deletions
34
dist/index.js
vendored
34
dist/index.js
vendored
|
|
@ -18235,6 +18235,8 @@ const Range = __nccwpck_require__(9828)
|
||||||
/***/ 9828:
|
/***/ 9828:
|
||||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
||||||
|
|
||||||
|
const SPACE_CHARACTERS = /\s+/g
|
||||||
|
|
||||||
// hoisted class for cyclic dependency
|
// hoisted class for cyclic dependency
|
||||||
class Range {
|
class Range {
|
||||||
constructor (range, options) {
|
constructor (range, options) {
|
||||||
|
|
@ -18255,7 +18257,7 @@ class Range {
|
||||||
// just put it in the set and return
|
// just put it in the set and return
|
||||||
this.raw = range.value
|
this.raw = range.value
|
||||||
this.set = [[range]]
|
this.set = [[range]]
|
||||||
this.format()
|
this.formatted = undefined
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -18266,10 +18268,7 @@ class Range {
|
||||||
// First reduce all whitespace as much as possible so we do not have to rely
|
// First reduce all whitespace as much as possible so we do not have to rely
|
||||||
// on potentially slow regexes like \s*. This is then stored and used for
|
// on potentially slow regexes like \s*. This is then stored and used for
|
||||||
// future error messages as well.
|
// future error messages as well.
|
||||||
this.raw = range
|
this.raw = range.trim().replace(SPACE_CHARACTERS, ' ')
|
||||||
.trim()
|
|
||||||
.split(/\s+/)
|
|
||||||
.join(' ')
|
|
||||||
|
|
||||||
// First, split on ||
|
// First, split on ||
|
||||||
this.set = this.raw
|
this.set = this.raw
|
||||||
|
|
@ -18303,14 +18302,29 @@ class Range {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.format()
|
this.formatted = undefined
|
||||||
|
}
|
||||||
|
|
||||||
|
get range () {
|
||||||
|
if (this.formatted === undefined) {
|
||||||
|
this.formatted = ''
|
||||||
|
for (let i = 0; i < this.set.length; i++) {
|
||||||
|
if (i > 0) {
|
||||||
|
this.formatted += '||'
|
||||||
|
}
|
||||||
|
const comps = this.set[i]
|
||||||
|
for (let k = 0; k < comps.length; k++) {
|
||||||
|
if (k > 0) {
|
||||||
|
this.formatted += ' '
|
||||||
|
}
|
||||||
|
this.formatted += comps[k].toString().trim()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return this.formatted
|
||||||
}
|
}
|
||||||
|
|
||||||
format () {
|
format () {
|
||||||
this.range = this.set
|
|
||||||
.map((comps) => comps.join(' ').trim())
|
|
||||||
.join('||')
|
|
||||||
.trim()
|
|
||||||
return this.range
|
return this.range
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue