Update to 2022-07-22 10:01

master
Daniel Berteaud 2 years ago
parent fbf1052684
commit 1bbdd68015
  1. 6
      roles/appsmith/tasks/install.yml

@ -117,9 +117,13 @@
path: "{{ appsmith_root_dir }}/src/app/client"
- name: Install NodeJS dependencies
command: unset http_proxy; unset https_proxy; unset all_proxy; && ./node_modules/yarn/bin/yarn install
command: ./node_modules/yarn/bin/yarn install
args:
chdir: "{{ appsmith_root_dir }}/src/app/client"
environment:
http_proxy: ""
https_proxy: ""
all_proxy: ""
- name: Build the client
command: ./node_modules/.bin/craco --max-old-space-size=3072 build --config craco.build.config.js

Loading…
Cancel
Save