Skip to content

Commit

Permalink
chore: update yarn and docusaurus deps (#2994)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibgreen authored May 6, 2024
1 parent 5b55ea1 commit 64c79d1
Show file tree
Hide file tree
Showing 3 changed files with 1,634 additions and 1,482 deletions.
2 changes: 1 addition & 1 deletion modules/parquet/src/parquetjs/codecs/rle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export function decodeValues(
const count = header >> 1;
decodedValues = decodeRunRepeated(cursor, count, opts);
}
for (const value of decodedValues) {
for (const value of decodedValues as any[]) {
values.push(value);
}
}
Expand Down
14 changes: 7 additions & 7 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"@deck.gl/layers": "^9.0.4",
"@deck.gl/mesh-layers": "^9.0.4",
"@deck.gl/react": "^9.0.4",
"@docusaurus/core": "^3.2.1",
"@docusaurus/preset-classic": "^3.2.1",
"@docusaurus/core": "^3.3.2",
"@docusaurus/preset-classic": "^3.3.2",
"@esri/react-arcgis": "^5.2.0",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
Expand Down Expand Up @@ -69,10 +69,10 @@
},
"devDependencies": {
"@cmfcmf/docusaurus-search-local": "^1.0.0",
"@docusaurus/module-type-aliases": "^3.2.1",
"@docusaurus/plugin-client-redirects": "^3.2.1",
"@docusaurus/plugin-content-docs": "^3.2.1",
"@docusaurus/tsconfig": "^3.2.1",
"@docusaurus/module-type-aliases": "^3.3.2",
"@docusaurus/plugin-client-redirects": "^3.3.2",
"@docusaurus/plugin-content-docs": "^3.3.2",
"@docusaurus/tsconfig": "^3.3.2",
"babel-plugin-styled-components": "^2.0.0",
"ts-node": "~10.9.1"
},
Expand All @@ -97,6 +97,6 @@
},
"volta": {
"node": "18.18.2",
"yarn": "4.1.0"
"yarn": "4.2.1"
}
}
Loading

0 comments on commit 64c79d1

Please sign in to comment.