From 062a91d178a7c604fabd3a21cf22d8639f7d4c48 Mon Sep 17 00:00:00 2001 From: Kyle <20785882+YourFavoriteKyle@users.noreply.github.com> Date: Thu, 16 Apr 2026 02:30:21 -0400 Subject: [PATCH] Add pnpm as a dependency to ghost-cli install (#13789) --- ct/ghost.sh | 2 +- install/ghost-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/ghost.sh b/ct/ghost.sh index 61ef14bb6..27c780227 100644 --- a/ct/ghost.sh +++ b/ct/ghost.sh @@ -25,7 +25,7 @@ function update_script() { check_container_resources setup_mariadb - NODE_VERSION="22" setup_nodejs + NODE_VERSION="22" NODE_MODULE="pnpm" setup_nodejs ensure_dependencies git msg_info "Updating Ghost" diff --git a/install/ghost-install.sh b/install/ghost-install.sh index cae000bd6..cf3efe5f5 100644 --- a/install/ghost-install.sh +++ b/install/ghost-install.sh @@ -23,7 +23,7 @@ msg_ok "Installed Dependencies" setup_mariadb MARIADB_DB_NAME="ghost" MARIADB_DB_USER="ghostuser" setup_mariadb_db -NODE_VERSION="22" setup_nodejs +NODE_VERSION="22" NODE_MODULE="pnpm" setup_nodejs msg_info "Installing Ghost CLI" $STD npm install ghost-cli@latest -g