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

View File

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

View File

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