add ganache fixes to nodejs and yarn. update requirements.yml, add two install methods for ganache, fixes to remix

This commit is contained in:
Bryan Black 2022-10-27 21:59:13 -07:00
parent 8077c51cf7
commit 6bfbc0a68a
8 changed files with 53 additions and 9 deletions

View file

@ -8,7 +8,7 @@
pkg:
- curl
- name: Remove node
- name: Remove nodejs
become_user: root
become: true
apt:
@ -18,12 +18,12 @@
pkg:
- nodejs
- name: add node apt repository
- name: add nodejs apt repository
become_user: root
become: true
ansible.builtin.shell: "curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - "
- name: Install node
- name: Install nodejs
become_user: root
become: true
apt:
@ -32,3 +32,9 @@
cache_valid_time: 604800
pkg:
- nodejs
- name:
become_user: root
become: true
ansible.builtin.shell: "corepack enable"