Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Jun 25, 2023
1 parent fe5b079 commit 488f927
Show file tree
Hide file tree
Showing 3 changed files with 233 additions and 100 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"dependencies": {
"@types/json-schema": "^7.0.12",
"commander": "^11.0.0",
"glob": "^8.0.3",
"glob": "^10.3.0",
"json5": "^2.2.3",
"normalize-path": "^3.0.0",
"safe-stable-stringify": "^2.4.3",
Expand All @@ -55,29 +55,29 @@
"devDependencies": {
"@auto-it/conventional-commits": "^10.46.0",
"@auto-it/first-time-contributor": "^10.46.0",
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"@types/node": "^20.3.1",
"@types/normalize-path": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"auto": "^10.46.0",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"vega": "^5.25.0",
"vega-lite": "^5.9.3"
"vega-lite": "^5.11.0"
},
"scripts": {
"prepublishOnly": "yarn build",
Expand Down
54 changes: 54 additions & 0 deletions test/vega-lite/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3424,6 +3424,17 @@
}
]
},
"minBandSize": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "#/definitions/ExprRef"
}
],
"description": "The minimum band size for bar and rectangle marks. __Default value:__ `0.25`"
},
"opacity": {
"anyOf": [
{
Expand Down Expand Up @@ -8744,6 +8755,24 @@
],
"type": "object"
},
"ExtentTransform": {
"additionalProperties": false,
"properties": {
"extent": {
"$ref": "#/definitions/FieldName",
"description": "The field of which to get the extent."
},
"param": {
"$ref": "#/definitions/ParameterName",
"description": "The output parameter produced by the extent transform."
}
},
"required": [
"extent",
"param"
],
"type": "object"
},
"FacetEncodingFieldDef<Field,ExprRef>": {
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -16945,6 +16974,17 @@
}
]
},
"minBandSize": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "#/definitions/ExprRef"
}
],
"description": "The minimum band size for bar and rectangle marks. __Default value:__ `0.25`"
},
"opacity": {
"anyOf": [
{
Expand Down Expand Up @@ -20739,6 +20779,17 @@
}
]
},
"minBandSize": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "#/definitions/ExprRef"
}
],
"description": "The minimum band size for bar and rectangle marks. __Default value:__ `0.25`"
},
"opacity": {
"anyOf": [
{
Expand Down Expand Up @@ -30190,6 +30241,9 @@
{
"$ref": "#/definitions/DensityTransform"
},
{
"$ref": "#/definitions/ExtentTransform"
},
{
"$ref": "#/definitions/FilterTransform"
},
Expand Down

0 comments on commit 488f927

Please sign in to comment.