Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@vitest/ui": "^3.0.5",
"@vitest/ui": "^3.2.4",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lerna": "^8.0.2",
"lerna": "^8.2.4",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2",
"tsx": "^4.16.2",
"vitest": "^3.0.5"
"tsx": "^4.21.0",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx}": [
Expand Down
14 changes: 7 additions & 7 deletions packages/format/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@
"watch": "yarn prepare && concurrently --names=tsc,schemas \"yarn watch:typescript\" \"yarn watch:schemas\""
},
"dependencies": {
"json-schema-typed": "^8.0.1",
"yaml": "^2.3.4"
"json-schema-typed": "8.0.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"@hyperjump/browser": "^1.2.0",
"@hyperjump/json-schema": "^1.11.0",
"@hyperjump/browser": "^1.3.1",
"@hyperjump/json-schema": "^1.17.3",
"chalk": "^4.1.0",
"cli-highlight": "^2.1.11",
"concurrently": "^8.2.2",
"indent-string": "^4.0.0",
"nodemon": "^3.0.2",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^3.0.5"
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/format/src/schemas/validity.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { schemas } from ".";
// loads schemas into global hyperjump json schema validator
import "../../test/hyperjump";

const printErrors = (output: OutputUnit): string =>
const printErrors = (output: { errors?: OutputUnit[] }): string =>
output
.errors!.map((error) => {
if (!error.valid && !error.keyword.endsWith("#validate")) {
Expand Down
7 changes: 3 additions & 4 deletions packages/format/vitest.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@ expect.extend({
} of the following values:\n${results
.map(
(result) =>
` ${result.pass ? chalk.green("✓") : chalk.red("✗")} ${
// @ts-expect-error this.utils exists in vitest matcher context
this.utils.printReceived(result.value)
}`,
` ${result.pass ? chalk.green("✓") : chalk.red("✗")} ${this.utils.printReceived(
result.value,
)}`,
)
.join("\n")}`,
};
Expand Down
10 changes: 5 additions & 5 deletions packages/pointers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
},
"devDependencies": {
"@ethdebug/format": "^0.1.0-0",
"chalk": "^5.3.0",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"ganache": "7.9.x",
"solc": "^0.8.26",
"solc": "^0.8.33",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^3.0.5"
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"ethereum-cryptography": "^2.1.3"
"ethereum-cryptography": "^2.2.1"
},
"publishConfig": {
"access": "public"
Expand Down
14 changes: 8 additions & 6 deletions packages/pointers/src/evaluate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,14 @@ describe("evaluate", () => {
};

const expectedHash = keccak256(
Buffer.from(
toHex(Data.fromNumber(42)).slice(2) +
toHex(Data.fromHex("0x1f")).slice(2) +
toHex(variables.foo).slice(2) +
toHex(variables.bar).slice(2),
"hex",
new Uint8Array(
Buffer.from(
toHex(Data.fromNumber(42)).slice(2) +
toHex(Data.fromHex("0x1f")).slice(2) +
toHex(variables.foo).slice(2) +
toHex(variables.bar).slice(2),
"hex",
),
),
);

Expand Down
48 changes: 24 additions & 24 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,39 +16,39 @@
},
"dependencies": {
"@apideck/better-ajv-errors": "^0.3.6",
"@docusaurus/core": "^3.4.0",
"@docusaurus/plugin-content-docs": "^3.4.0",
"@docusaurus/preset-classic": "^3.4.0",
"@docusaurus/tsconfig": "^3.4.0",
"@docusaurus/types": "^3.4.0",
"@docusaurus/core": "^3.9.2",
"@docusaurus/plugin-content-docs": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@docusaurus/types": "^3.9.2",
"@ethdebug/format": "^0.1.0-0",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mdx-js/react": "^3.0.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.6",
"@mdx-js/react": "^3.1.1",
"@mischnic/json-sourcemap": "^0.1.1",
"@monaco-editor/react": "^4.6.0",
"@monaco-editor/react": "^4.7.0",
"@saucelabs/theme-github-codeblock": "^0.2.3",
"@shikijs/themes": "^2.2.0",
"ajv": "^8.12.0",
"@shikijs/themes": "^2.5.0",
"ajv": "^8.17.1",
"clsx": "^1.2.1",
"docusaurus-json-schema-plugin": "^1.12.1",
"prism-react-renderer": "^2.1.0",
"docusaurus-json-schema-plugin": "^1.15.0",
"prism-react-renderer": "^2.4.1",
"raw-loader": "^4.0.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-markdown": "^9.0.1",
"shiki": "^2.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.1.0",
"shiki": "^2.5.0",
"ts-morph": "^22.0.0",
"yaml-template": "^1.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.0.1",
"@docusaurus/tsconfig": "^3.0.1",
"@docusaurus/types": "^3.0.1",
"json-schema-typed": "^8.0.1",
"typescript": "~5.2.2"
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@docusaurus/types": "^3.9.2",
"json-schema-typed": "8.0.1",
"typescript": "^5.9.3"
},
"browserslist": {
"production": [
Expand Down
Loading
Loading