0b4ed70366
The old role will be kept and include ensure-yarn for backwards-compatability. Change-Id: I7631c7e588bc953d6e3b22759abe66a73ffca728
16 lines
353 B
YAML
16 lines
353 B
YAML
- name: Check for yarn.lock file
|
|
stat:
|
|
path: "{{ yarn_lock_file_path }}"
|
|
get_checksum: false
|
|
get_mime: false
|
|
get_md5: false
|
|
register: yarn_lock
|
|
|
|
- name: Install yarn if needed
|
|
include: "{{ item }}"
|
|
with_first_found:
|
|
- "{{ ansible_distribution }}.yaml"
|
|
- "{{ ansible_os_family }}.yaml"
|
|
when:
|
|
- yarn_lock.stat.exists
|