Skip to content

Commit 1f00812

Browse files
committed
use hardline instead for zfs; deal with some depcheck issues
1 parent 16a783e commit 1f00812

File tree

7 files changed

+13
-131
lines changed

7 files changed

+13
-131
lines changed

src/packages/frontend/frame-editors/x11-editor/xpra/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ export function generateDigest(
256256
}
257257

258258
const hmac = forge.hmac.create();
259-
hmac.start(hash, password);
259+
hmac.start(hash as any, password);
260260
hmac.update(salt);
261261

262262
return hmac.digest().toHex();

src/packages/frontend/jest.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ module.exports = {
33
preset: "ts-jest",
44
testEnvironment: "node",
55
testMatch: ["**/?(*.)+(spec|test).ts?(x)"],
6-
setupFiles: ["./test/setup.js"],
76
};

src/packages/frontend/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@
121121
"pdfjs-dist": "^4.6.82",
122122
"plotly.js": "^2.29.1",
123123
"project-name-generator": "^2.1.6",
124-
"prop-types": "^15.7.2",
125124
"re-resizable": "^6.9.0",
126125
"react": "^19.1.0",
127126
"react-color": "^2.19.3",

src/packages/frontend/test/setup.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/packages/next/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@
7878
"lru-cache": "^7.18.3",
7979
"ms": "2.1.2",
8080
"next": "15.3.4",
81-
"next-remove-imports": "^1.0.11",
8281
"next-rest-framework": "6.0.0-beta.4",
8382
"next-translate": "^2.6.2",
8483
"password-hash": "^1.2.2",
@@ -99,7 +98,6 @@
9998
"@types/express": "^4.17.21",
10099
"@types/node": "^18.16.14",
101100
"@types/react": "^19.1.8",
102-
"@types/react-dom": "^19.1.6",
103101
"@uiw/react-textarea-code-editor": "^3.1.1",
104102
"next-rspack": "^15.3.4",
105103
"node-mocks-http": "^1.14.1",

0 commit comments

Comments
 (0)