bundles: install yarn globally instead of in each individual bundle

This commit is contained in:
Franzi 2022-04-03 08:16:35 +02:00
parent 193c038bab
commit ddd29bef3b
Signed by: kunsi
GPG key ID: 12E3D2136B818350
5 changed files with 16 additions and 9 deletions

9
bundles/nodejs/items.py Normal file
View file

@ -0,0 +1,9 @@
actions = {
'nodejs_install_yarn': {
'command': 'npm install -g yarn@latest',
'unless': 'test -e /usr/lib/node_modules/yarn',
'needs': {
'pkg_apt:nodejs',
},
},
}