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

  1. ---
  2. - name: Install Node.js
  3. apt:
  4. name:
  5. - nodejs
  6. - npm
  7. - name: Install npm packages defined in package.json
  8. become_user: "{{ app_username }}"
  9. community.general.npm:
  10. path: "{{ app_dir }}"
  11. # --no-bin-links option is needed to prevent npm from creating symlinks in the .bin
  12. # directory, which doesn't work inside Vagrant on Windows
  13. no_bin_links: true