fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/provisioning/roles/shelfzilla/tasks/post_nodejs.yml

17 lines
415 B
YAML

- name: Install NPM global resources
npm: name="{{item}}" global=yes
sudo: yes
with_items:
- grunt
- grunt-cli
- bower
- less
- coffee-script
- name: Install NPM deps
npm: path="{{shelfzilla_base_path}}" production=yes
sudo: yes
- name: Bower Install
command: /usr/bin/bower install --allow-root chdir="{{shelfzilla_base_path}}"
sudo: yes