Files
ansible_role_package/tasks/npm.yml
2025-02-13 11:06:56 -07:00

9 lines
179 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: Install npm pkg
become: "{{ archive_become }}"
community.general.npm:
global: true
name: "{{ pkg }}"
state: present