Ship: Renovate onboarding + dependency modernization batches 1–3 #221

Merged
bvandeusen merged 20 commits from dev into main 2026-07-11 23:16:33 -04:00
2 changed files with 5 additions and 7 deletions
Showing only changes of commit c98db303d0 - Show all commits
+4 -4
View File
@@ -97,10 +97,10 @@ jobs:
# If we want strict lockfile-based reproducibility later, commit a # If we want strict lockfile-based reproducibility later, commit a
# package-lock.json and flip this back to `npm ci`. # package-lock.json and flip this back to `npm ci`.
- run: npm install --no-audit --no-fund - run: npm install --no-audit --no-fund
# `npm run check` (vue-tsc --noEmit) skipped: the frontend is pure JS # No type-check step: the frontend is pure JS (no .ts files, no JSDoc),
# with no .ts files and no JSDoc annotations, so vue-tsc has nothing # so a type-checker has nothing to do. The vue-tsc devDep + its `check`
# to type-check. Re-enable once we add a tsconfig.json and either # script were dropped 2026-07-11 rather than bumped to v3. If we add
# convert to TS or add JSDoc. # TS/JSDoc later, re-add a tsconfig.json + vue-tsc + a type-check step.
- run: npm run test:unit - run: npm run test:unit
- run: npm run build - run: npm run build
+1 -3
View File
@@ -10,8 +10,7 @@
"dev": "vite", "dev": "vite",
"build": "vite build", "build": "vite build",
"preview": "vite preview", "preview": "vite preview",
"test:unit": "vitest run", "test:unit": "vitest run"
"check": "vue-tsc --noEmit"
}, },
"dependencies": { "dependencies": {
"vue": "^3.4.0", "vue": "^3.4.0",
@@ -23,7 +22,6 @@
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^6.0.0", "@vitejs/plugin-vue": "^6.0.0",
"vite": "^8.0.0", "vite": "^8.0.0",
"vue-tsc": "^2.0.0",
"vite-plugin-vuetify": "^2.0.0", "vite-plugin-vuetify": "^2.0.0",
"sass": "^1.71.0", "sass": "^1.71.0",
"vitest": "^4.0.0", "vitest": "^4.0.0",