From 35df3485b1f7be42ec55c94166c1b201030fac29 Mon Sep 17 00:00:00 2001 From: meaz Date: Sat, 23 Mar 2024 23:18:54 +0100 Subject: [PATCH] install modules with pnpm --- tasks/modules.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/modules.yml b/tasks/modules.yml index d987bb6..0b6a75f 100644 --- a/tasks/modules.yml +++ b/tasks/modules.yml @@ -5,7 +5,7 @@ # then uses filter to get all plugins names in one line, without comas or quotes as needed for npm - name: '[Modules] - Install modules' shell: - cmd: "npm install --no-save --legacy-peer-deps {{ etherpad_plugins_list| dict2items | selectattr('value', 'eq', 'enabled') | map(attribute='key') |join(',') | replace(\",\", \" \") }}" + cmd: "pnpm run install-plugins {{ etherpad_plugins_list| dict2items | selectattr('value', 'eq', 'enabled') | map(attribute='key') |join(',') | replace(\",\", \" \") }}" args: chdir: "{{ etherpad_app_dir }}/app" become: yes