chore(deps): update packages, use node22 packages

This commit is contained in:
Ismo Vuorinen
2024-09-17 13:33:20 +03:00
parent 9ba9cdbf62
commit 5c8efb89db
4 changed files with 317 additions and 355 deletions

654
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -16,9 +16,9 @@
"vue": "^3.4.21"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.28",
"@rushstack/eslint-patch": "^1.10.4",
"@tsconfig/node22": "^22",
"@types/node": "^22",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
@@ -27,7 +27,7 @@
"eslint-plugin-vue": "^9.17.0",
"npm-run-all2": "^6.1.2",
"prettier": "^3.0.3",
"typescript": "~5.5.0",
"typescript": "~5.6.0",
"vite": "^5.1.6",
"vite-plugin-vue-devtools": "^7.0.18",
"vue-tsc": "^2.0.6"

View File

@@ -173,13 +173,13 @@ watch(
<main>
<h3>Generated service script:</h3>
<div>
Path: <code>{{ servicePath }}</code>
Save as: <code>{{ servicePath }}</code>
</div>
<textarea style="height: 400px" v-text="serviceTemplate"></textarea>
<details>
<summary>Logrotate</summary>
<div>
Path: <code>{{ logRotatePath }}</code>
Save as: <code>{{ logRotatePath }}</code>
</div>
<textarea class="just-right noresize" v-text="logRotate"></textarea>
</details>

View File

@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
@@ -13,6 +13,8 @@
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
"types": [
"node"
]
}
}