ansible-nodejs/tasks/tools.yml

5 lines
212 B
YAML

---
- name: install globally required tools
npm: name={{ item }} global=yes state=present registry=http://registry.npmjs.org/
with_items: {{ globally_installed_tools }}
when: globally_installed_tools exists