chore(package.json): refactor update command to also check cli dependencies

This commit is contained in:
Cory Dransfeldt 2025-06-05 20:31:52 -07:00
parent d08787f5aa
commit 7111b8d223
No known key found for this signature in database
4 changed files with 580 additions and 467 deletions

1031
cli/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -12,11 +12,11 @@
"author": "Cory Dransfeldt", "author": "Cory Dransfeldt",
"dependencies": { "dependencies": {
"chalk": "^5.4.1", "chalk": "^5.4.1",
"commander": "^11.0.0", "commander": "^14.0.0",
"figlet": "^1.8.1", "figlet": "^1.8.1",
"fs-extra": "^11.2.0", "fs-extra": "^11.3.0",
"glob": "^10.3.10", "glob": "^11.0.2",
"inquirer": "^9.2.7", "inquirer": "^12.6.3",
"transliteration": "^2.3.5" "transliteration": "^2.3.5"
} }
} }

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "9.0.0", "version": "9.0.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "9.0.0", "version": "9.0.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"minisearch": "^7.1.2", "minisearch": "^7.1.2",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "9.0.0", "version": "9.0.1",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"engines": { "engines": {
@ -14,7 +14,7 @@
"watch": "eleventy --watch", "watch": "eleventy --watch",
"build": "eleventy", "build": "eleventy",
"php": "export $(grep -v '^#' .env | xargs) && php -d error_reporting=E_ALL^E_DEPRECATED -S localhost:8080 -t dist", "php": "export $(grep -v '^#' .env | xargs) && php -d error_reporting=E_ALL^E_DEPRECATED -S localhost:8080 -t dist",
"update:deps": "composer update && npm upgrade && ncu", "update:deps": "composer update && npm upgrade && npm --prefix cli upgrade && ncu && ncu --cwd cli",
"setup": "sh ./scripts/setup.sh", "setup": "sh ./scripts/setup.sh",
"setup:deploy": "sh ./scripts/setup.sh --deploy", "setup:deploy": "sh ./scripts/setup.sh --deploy",
"clean": "rimraf dist .cache", "clean": "rimraf dist .cache",