Skip to content

Commit

Permalink
Bump stuff and revert ts to fix ts expect error
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvNC committed Oct 26, 2024
1 parent 3246650 commit 445984b
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 78 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@
],
"url": "/ext/data/schemas/recommended-dictionaries-schema.json"
}
]
],
"typescript.tsdk": "node_modules\\typescript\\lib"
}
1 change: 1 addition & 0 deletions ext/js/dom/document-util.js
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,7 @@ function computeCssZoomSupported() {
return (
typeof style === 'object' &&
style !== null &&
// @ts-expect-error - zoom is a non-standard property.
typeof style.zoom === 'string'
);
}
129 changes: 56 additions & 73 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "1.2.2",
"ajv": "^8.14.0",
"ajv": "^8.17.1",
"css": "^3.0.0",
"dotenv": "^16.4.5",
"esbuild": "^0.21.4",
Expand All @@ -99,9 +99,9 @@
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-recommended": "^14.0.0",
"ts-json-schema-generator": "^1.5.0",
"typescript": "^5.6.3",
"vitest": "1.2.2"
"ts-json-schema-generator": "^1.5.1",
"typescript": "^5.4.5",
"vitest": "^1.2.2"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^8.11.0",
Expand Down

0 comments on commit 445984b

Please sign in to comment.