Update dependencies
This commit is contained in:
parent
61269ca1e5
commit
6bb051460e
6 changed files with 7525 additions and 8464 deletions
8440
obsidian-plugin/package-lock.json
generated
8440
obsidian-plugin/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -13,25 +13,26 @@
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"sync-client": "file:../sync-client",
|
|
||||||
"@types/jest": "^29.5.14",
|
"@types/jest": "^29.5.14",
|
||||||
"@types/node": "^16.11.6",
|
"@types/node": "^22.13.4",
|
||||||
"css-loader": "^7.1.2",
|
"css-loader": "^7.1.2",
|
||||||
"date-fns": "^4.1.0",
|
"date-fns": "^4.1.0",
|
||||||
"file-loader": "^6.2.0",
|
"file-loader": "^6.2.0",
|
||||||
"fs-extra": "^11.2.0",
|
"fs-extra": "^11.3.0",
|
||||||
"virtual-scroller": "^1.13.1",
|
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"mini-css-extract-plugin": "^2.9.2",
|
"mini-css-extract-plugin": "^2.9.2",
|
||||||
"obsidian": "1.7.2",
|
"obsidian": "1.8.7",
|
||||||
"resolve-url-loader": "^5.0.0",
|
"resolve-url-loader": "^5.0.0",
|
||||||
"sass-loader": "^16.0.4",
|
"sass": "^1.85.0",
|
||||||
|
"sass-loader": "^16.0.5",
|
||||||
|
"sync-client": "file:../sync-client",
|
||||||
"terser-webpack-plugin": "^5.3.11",
|
"terser-webpack-plugin": "^5.3.11",
|
||||||
"ts-jest": "^29.2.5",
|
"ts-jest": "^29.2.5",
|
||||||
"ts-loader": "^9.5.1",
|
"ts-loader": "^9.5.2",
|
||||||
"tslib": "2.4.0",
|
"tslib": "2.8.1",
|
||||||
"typescript": "5.7.2",
|
"typescript": "5.7.3",
|
||||||
"webpack": "^5.97.1",
|
"virtual-scroller": "^1.13.1",
|
||||||
|
"webpack": "^5.98.0",
|
||||||
"webpack-cli": "^6.0.1"
|
"webpack-cli": "^6.0.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -13,7 +13,7 @@ import { SyncType, SyncSource, SyncStatus } from "sync-client";
|
||||||
export class HistoryView extends ItemView {
|
export class HistoryView extends ItemView {
|
||||||
public static readonly TYPE = "history-view";
|
public static readonly TYPE = "history-view";
|
||||||
public static readonly ICON = "square-stack";
|
public static readonly ICON = "square-stack";
|
||||||
private timer: NodeJS.Timer | null = null;
|
private timer: NodeJS.Timeout | null = null;
|
||||||
|
|
||||||
public constructor(
|
public constructor(
|
||||||
leaf: WorkspaceLeaf,
|
leaf: WorkspaceLeaf,
|
||||||
|
|
|
||||||
7498
package-lock.json
generated
Normal file
7498
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
10
package.json
10
package.json
|
|
@ -15,12 +15,14 @@
|
||||||
"build": "npm run build --workspaces",
|
"build": "npm run build --workspaces",
|
||||||
"dev": "npm run dev --workspaces",
|
"dev": "npm run dev --workspaces",
|
||||||
"test": "npm run test --workspaces",
|
"test": "npm run test --workspaces",
|
||||||
"lint": "eslint --fix sync-client obsidian-plugin; prettier --write \"sync-client/**/*.(ts|scss|json|html)\" \"obsidian-plugin/**/*.(ts|scss|json|html)\""
|
"lint": "eslint --fix sync-client obsidian-plugin; prettier --write \"sync-client/**/*.(ts|scss|json|html)\" \"obsidian-plugin/**/*.(ts|scss|json|html)\"",
|
||||||
|
"update": "ncu -u -ws"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"prettier": "^3.4.2",
|
"npm-check-updates": "^17.1.14",
|
||||||
"eslint": "9.17.0",
|
"prettier": "^3.5.1",
|
||||||
"typescript-eslint": "8.18.0",
|
"eslint": "9.20.1",
|
||||||
|
"typescript-eslint": "8.24.1",
|
||||||
"eslint-plugin-unused-imports": "^4.1.4"
|
"eslint-plugin-unused-imports": "^4.1.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -9,20 +9,20 @@
|
||||||
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest"
|
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"tslib": "2.4.0",
|
"tslib": "2.8.1",
|
||||||
"typescript": "5.7.2",
|
"typescript": "5.7.3",
|
||||||
"sync_lib": "file:../backend/sync_lib/pkg",
|
"sync_lib": "file:../backend/sync_lib/pkg",
|
||||||
"@types/jest": "^29.5.14",
|
"@types/jest": "^29.5.14",
|
||||||
"@types/node": "^16.11.6",
|
"@types/node": "^22.13.4",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"ts-jest": "^29.2.5",
|
"ts-jest": "^29.2.5",
|
||||||
"p-queue": "^8.0.1",
|
"p-queue": "^8.1.0",
|
||||||
"fetch-retry": "^6.0.0",
|
"fetch-retry": "^6.0.0",
|
||||||
"byte-base64": "^1.1.0",
|
"byte-base64": "^1.1.0",
|
||||||
"openapi-fetch": "0.13.3",
|
"openapi-fetch": "0.13.4",
|
||||||
"openapi-typescript": "7.4.4",
|
"openapi-typescript": "7.6.1",
|
||||||
"ts-loader": "^9.5.1",
|
"ts-loader": "^9.5.2",
|
||||||
"webpack": "^5.97.1",
|
"webpack": "^5.98.0",
|
||||||
"webpack-cli": "^6.0.1"
|
"webpack-cli": "^6.0.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue