10 lines
239 B
YAML
10 lines
239 B
YAML
# vim: filetype=yaml.ansible :
|
|
---
|
|
- ansible.builtin.include_tasks:
|
|
file: pkgs/nodejs.yml
|
|
when: pkgconfig_nodejs is undefined
|
|
|
|
- name: add to npmpkgs
|
|
ansible.builtin.set_fact:
|
|
npmpkgs: "{{ npmpkgs + ['sql-language-server'] }}"
|