Skip to content

Commit

Permalink
deps: semver@7.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar committed May 17, 2023
1 parent 35e2e9a commit 902cb80
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion node_modules/semver/classes/semver.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class SemVer {
version = version.version
}
} else if (typeof version !== 'string') {
throw new TypeError(`Invalid Version: ${require('util').inspect(version)}`)
throw new TypeError(`Invalid version. Must be a string. Got type "${typeof version}".`)
}

if (version.length > MAX_LENGTH) {
Expand Down
6 changes: 3 additions & 3 deletions node_modules/semver/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semver",
"version": "7.5.0",
"version": "7.5.1",
"description": "The semantic version parser used by npm.",
"main": "index.js",
"scripts": {
Expand All @@ -14,7 +14,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.13.0",
"@npmcli/template-oss": "4.14.1",
"tap": "^16.0.0"
},
"license": "ISC",
Expand Down Expand Up @@ -53,7 +53,7 @@
"author": "GitHub Inc.",
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.13.0",
"version": "4.14.1",
"engines": ">=10",
"ciVersions": [
"10.0.0",
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"read": "^2.1.0",
"read-package-json": "^6.0.3",
"read-package-json-fast": "^3.0.2",
"semver": "^7.5.0",
"semver": "^7.5.1",
"ssri": "^10.0.4",
"tar": "^6.1.14",
"text-table": "~0.2.0",
Expand Down Expand Up @@ -11355,9 +11355,9 @@
}
},
"node_modules/semver": {
"version": "7.5.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz",
"integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
"version": "7.5.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz",
"integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==",
"inBundle": true,
"dependencies": {
"lru-cache": "^6.0.0"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
"read": "^2.1.0",
"read-package-json": "^6.0.3",
"read-package-json-fast": "^3.0.2",
"semver": "^7.5.0",
"semver": "^7.5.1",
"ssri": "^10.0.4",
"tar": "^6.1.14",
"text-table": "~0.2.0",
Expand Down

0 comments on commit 902cb80

Please sign in to comment.