Skip to content

Commit c3137f5

Browse files
Bump globals from 17.3.0 to 17.4.0 (#421)
* Bump globals from 17.3.0 to 17.4.0 Bumps [globals](https://github.com/sindresorhus/globals) from 17.3.0 to 17.4.0. - [Release notes](https://github.com/sindresorhus/globals/releases) - [Commits](sindresorhus/globals@v17.3.0...v17.4.0) --- updated-dependencies: - dependency-name: globals dependency-version: 17.4.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Prevent Cannot access 'isStrictVersion' before initialization --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Paulo F. Oliveira <paulo.ferraz.oliveira@gmail.com>
1 parent 4cbacdb commit c3137f5

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

dist/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53632,17 +53632,17 @@ async function getOTPVersion(otpSpec0, osVersion) {
5363253632
}
5363353633

5363453634
function requestedVersionFor(tool, version, originListing, mirrors) {
53635-
const isStrictVersion = isStrictVersion()
53635+
const isVersionTypeStrict = isStrictVersion()
5363653636

5363753637
let versionType = 'loose'
53638-
if (isStrictVersion) {
53638+
if (isVersionTypeStrict) {
5363953639
versionType = 'strict'
5364053640
}
5364153641

5364253642
let ret =
5364353643
`Requested ${versionType} ${tool} version (${version}) not found in version list, ` +
5364453644
`at ${originListing}${mirrors ? `, with mirrors ${mirrors}` : ''}.`
53645-
if (!isStrictVersion) {
53645+
if (!isVersionTypeStrict) {
5364653646
ret = `${ret} Should you be using option 'version-type': 'strict'?`
5364753647
}
5364853648

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@vercel/ncc": "0.38.4",
3030
"eslint": "10.0.3",
3131
"eslint-plugin-yml": "3.3.1",
32-
"globals": "17.3.0",
32+
"globals": "17.4.0",
3333
"markdownlint-cli": "0.48.0",
3434
"prettier": "3.8.1",
3535
"shellcheck": "4.1.0",

src/setup-beam.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,17 +192,17 @@ async function getOTPVersion(otpSpec0, osVersion) {
192192
}
193193

194194
function requestedVersionFor(tool, version, originListing, mirrors) {
195-
const isStrictVersion = isStrictVersion()
195+
const isVersionTypeStrict = isStrictVersion()
196196

197197
let versionType = 'loose'
198-
if (isStrictVersion) {
198+
if (isVersionTypeStrict) {
199199
versionType = 'strict'
200200
}
201201

202202
let ret =
203203
`Requested ${versionType} ${tool} version (${version}) not found in version list, ` +
204204
`at ${originListing}${mirrors ? `, with mirrors ${mirrors}` : ''}.`
205-
if (!isStrictVersion) {
205+
if (!isVersionTypeStrict) {
206206
ret = `${ret} Should you be using option 'version-type': 'strict'?`
207207
}
208208

0 commit comments

Comments
 (0)