mirror of https://gitlab.com/tildes/tildes.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
386 B
14 lines
386 B
---
|
|
- name: Install Node.js
|
|
apt:
|
|
name:
|
|
- nodejs
|
|
- npm
|
|
|
|
- name: Install npm packages defined in package.json
|
|
become_user: "{{ app_username }}"
|
|
community.general.npm:
|
|
path: "{{ app_dir }}"
|
|
# --no-bin-links option is needed to prevent npm from creating symlinks in the .bin
|
|
# directory, which doesn't work inside Vagrant on Windows
|
|
no_bin_links: true
|