2017-12-31 09:00:54 +00:00
|
|
|
---
|
2018-01-30 23:27:38 +00:00
|
|
|
- name: Install Composer dependencies
|
|
|
|
composer:
|
|
|
|
command: install
|
|
|
|
working_dir: "{{ ansistrano_release_path.stdout }}"
|
|
|
|
|
|
|
|
- name: Generate the site once without assets
|
|
|
|
command: composer run prod
|
|
|
|
args:
|
|
|
|
chdir: "{{ ansistrano_release_path.stdout }}"
|
|
|
|
|
2018-01-05 22:16:30 +00:00
|
|
|
- name: Install Node dependencies
|
2017-12-31 09:00:54 +00:00
|
|
|
command: yarn install
|
|
|
|
args:
|
|
|
|
chdir: "{{ ansistrano_release_path.stdout }}"
|
|
|
|
|
2018-02-13 18:53:40 +00:00
|
|
|
- name: Install Laravel Mix assets
|
2018-02-13 18:27:31 +00:00
|
|
|
command: yarn run production
|
2017-12-31 09:00:54 +00:00
|
|
|
args:
|
|
|
|
chdir: "{{ ansistrano_release_path.stdout }}"
|
|
|
|
|
2018-01-30 23:27:38 +00:00
|
|
|
- name: Generate the site, including assets
|
2017-12-31 09:00:54 +00:00
|
|
|
command: composer run prod
|
|
|
|
args:
|
|
|
|
chdir: "{{ ansistrano_release_path.stdout }}"
|