We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80b2789 commit 0d54858Copy full SHA for 0d54858
bids-validator/deno.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@bids/validator",
3
- "version": "1.14.13",
+ "version": "1.14.14",
4
"exports": {
5
".": "./src/bids-validator.ts",
6
"./main": "./src/main.ts",
bids-validator/src/utils/errors.ts
@@ -1,5 +1,6 @@
export class SchemaStructureError extends Error {
- constructor(schemaPath) {
+ schemaPath: string
+ constructor(schemaPath: string) {
super(`Validator attempted to access ${schemaPath}, but it wasn't there.`)
this.name = 'SchemaStructureError'
this.schemaPath = schemaPath
bids-validator/src/validators/isBidsy.ts
0 commit comments