Skip to content

Commit

Permalink
Upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne-dldc committed Sep 30, 2023
1 parent 531b5a7 commit fa3a565
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 77 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,24 +86,24 @@
"root": true
},
"dependencies": {
"@dldc/erreur": "^4.1.0"
"@dldc/erreur": "^4.1.1"
},
"devDependencies": {
"@types/node": "^20.7.0",
"@types/sql.js": "^1.4.4",
"@types/node": "^20.8.0",
"@types/sql.js": "^1.4.5",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitest/coverage-v8": "^0.34.5",
"@vitest/coverage-v8": "^0.34.6",
"auto-changelog": "^2.4.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"release-it": "^16.2.0",
"rimraf": "^5.0.1",
"release-it": "^16.2.1",
"rimraf": "^5.0.5",
"sql.js": "^1.8.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.5"
"vitest": "^0.34.6"
},
"packageManager": "pnpm@8.6.1",
"publishConfig": {
Expand Down
130 changes: 65 additions & 65 deletions pnpm-lock.yaml

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

10 changes: 5 additions & 5 deletions src/ZenRsyncErreur.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import type { IKey } from '@dldc/erreur';
import type { TKey, TVoidKey } from '@dldc/erreur';
import { Erreur, Key } from '@dldc/erreur';

export const ZenRsyncErreur = (() => {
const InvalidDiffKey: IKey<{ blockIndex: number }, false> = Key.create('InvalidDiff');
const BlockCountMismatchKey: IKey<{ expected: number; actual: number }, false> = Key.create('BlockCountMismatch');
const UnexpectedEofKey: IKey<undefined, false, []> = Key.createEmpty('UnexpectedEof');
const ExpectedEofKey: IKey<undefined, false, []> = Key.createEmpty('ExpectedEof');
const InvalidDiffKey: TKey<{ blockIndex: number }> = Key.create('InvalidDiff');
const BlockCountMismatchKey: TKey<{ expected: number; actual: number }> = Key.create('BlockCountMismatch');
const UnexpectedEofKey: TVoidKey = Key.createEmpty('UnexpectedEof');
const ExpectedEofKey: TVoidKey = Key.createEmpty('ExpectedEof');

return {
InvalidDiff: {
Expand Down

0 comments on commit fa3a565

Please sign in to comment.