Skip to content

Commit

Permalink
v1.14.13
Browse files Browse the repository at this point in the history
  • Loading branch information
rwblair committed Sep 13, 2024
1 parent 1b24b65 commit 4353153
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion bids-validator-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bids-validator-web",
"version": "1.14.13-dev.0",
"version": "1.14.13",
"description": "web client for bids-validator",
"main": "index.js",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion bids-validator/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bids/validator",
"version": "1.14.12",
"version": "1.14.13",
"exports": {
".": "./src/bids-validator.ts",
"./main": "./src/main.ts",
Expand Down
2 changes: 1 addition & 1 deletion bids-validator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bids-validator",
"version": "1.14.13-dev.0",
"version": "1.14.13",
"description": "",
"main": "./dist/commonjs/index.js",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion bids-validator/src/utils/output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ function helpUrl(code: string): string {
return `https://neurostars.org/search?q=${code}`
}

export function resultToJSONStr(result: ValidationResult) {
export function resultToJSONStr(result: ValidationResult): string {
return JSON.stringify(result, (key, value) => {
if (value?.parent) {
// Remove parent reference to avoid circular references
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages": ["bids-validator", "bids-validator-web"],
"version": "1.14.13-dev.0"
"version": "1.14.13"
}
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4353153

Please sign in to comment.