Skip to content

Commit

Permalink
chore: upgrade deps (#1404)
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Sep 13, 2022
1 parent b96abda commit b52a515
Show file tree
Hide file tree
Showing 4 changed files with 222 additions and 312 deletions.
22 changes: 11 additions & 11 deletions package.json
Expand Up @@ -50,34 +50,34 @@
"json5": "^2.2.1",
"normalize-path": "^3.0.0",
"safe-stable-stringify": "^2.3.1",
"typescript": "~4.8.2"
"typescript": "~4.8.3"
},
"devDependencies": {
"@auto-it/conventional-commits": "^10.37.4",
"@auto-it/first-time-contributor": "^10.37.4",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@babel/preset-typescript": "^7.18.6",
"@types/glob": "^8.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.6.3",
"@types/jest": "^29.0.2",
"@types/node": "^18.7.17",
"@types/normalize-path": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"auto": "^10.37.4",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"eslint": "^8.20.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.1",
"jest-junit": "^14.0.0",
"jest": "^29.0.3",
"jest-junit": "^14.0.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"vega": "^5.22.1",
"vega-lite": "^5.4.0"
"vega-lite": "^5.5.0"
},
"scripts": {
"prepublishOnly": "yarn build",
Expand Down
2 changes: 1 addition & 1 deletion test/valid-data/annotation-default/schema.json
Expand Up @@ -71,4 +71,4 @@
"type": "object"
}
}
}
}
15 changes: 12 additions & 3 deletions test/valid-data/annotation-union-if-then/schema.json
Expand Up @@ -43,7 +43,10 @@
"type": "boolean"
}
},
"required": ["animal_type", "can_fly"],
"required": [
"animal_type",
"can_fly"
],
"type": "object"
},
"Fish": {
Expand All @@ -54,11 +57,17 @@
"type": "string"
},
"found_in": {
"enum": ["ocean", "river"],
"enum": [
"ocean",
"river"
],
"type": "string"
}
},
"required": ["animal_type", "found_in"],
"required": [
"animal_type",
"found_in"
],
"type": "object"
}
}
Expand Down

0 comments on commit b52a515

Please sign in to comment.