Skip to content

Commit

Permalink
chore: upgrade deps and broaden type support in isParameterExtent (#9293
Browse files Browse the repository at this point in the history
)

Co-authored-by: GitHub Actions Bot <vega-actions-bot@users.noreply.github.com>
  • Loading branch information
domoritz and GitHub Actions Bot committed Apr 10, 2024
1 parent 27c3684 commit 406d486
Show file tree
Hide file tree
Showing 3 changed files with 1,339 additions and 1,302 deletions.
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@
"url": "https://github.com/vega/vega-lite/issues"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.4",
Expand All @@ -90,38 +90,38 @@
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.11",
"@types/jest": "^29.5.12",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"cheerio": "^1.0.0-rc.12",
"conventional-changelog-cli": "^4.1.0",
"d3": "^7.8.5",
"d3": "^7.9.0",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"fast-json-stable-stringify": "~2.1.0",
"highlight.js": "^11.9.0",
"jest": "^29.7.0",
"jest-dev-server": "^9.0.2",
"jest-dev-server": "^10.0.0",
"mkdirp": "^3.0.1",
"pako": "^2.1.0",
"prettier": "^3.2.4",
"prettier": "^3.2.5",
"puppeteer": "^15.0.0",
"release-it": "^17.0.3",
"rollup": "^4.9.6",
"release-it": "^17.1.1",
"rollup": "^4.13.0",
"rollup-plugin-bundle-size": "^1.0.3",
"serve": "^14.2.1",
"terser": "^5.27.0",
"terser": "^5.29.2",
"ts-jest": "^29.1.2",
"ts-json-schema-generator": "^1.5.0",
"typescript": "~5.3.3",
"vega-cli": "^5.27.0",
"vega-datasets": "^2.8.0",
"typescript": "~5.4.3",
"vega-cli": "^5.28.0",
"vega-datasets": "^2.8.1",
"vega-embed": "^6.24.0",
"vega-tooltip": "^0.34.0",
"yaml-front-matter": "^4.1.1"
Expand Down
2 changes: 1 addition & 1 deletion src/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export function isBinParams(bin: BinParams | boolean | 'binned'): bin is BinPara
return isObject(bin);
}

export function isParameterExtent(extent: BinExtent): extent is ParameterExtent {
export function isParameterExtent(extent: unknown): extent is ParameterExtent {
return extent?.['param'];
}

Expand Down

0 comments on commit 406d486

Please sign in to comment.