From e3c03bf4a08ccfcd05ce8629e29e8b5907b1f019 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Tue, 17 Nov 2020 12:29:50 +0100 Subject: [PATCH 1/2] Update README Add note about having to use node.js 12 for now. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 73fd7af..682df8b 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,9 @@ Aragon CLI and Truffle need to be installed on your sytem as well: npm install -g @aragon/cli npm install -g truffle +_Note: `@aragon/cli` currently fails to install on node.js 14. Please use +node.js 12 until the issue has been resolved upstream._ + ### Local development chain For local development it is recommended to use From 32b212f9cfb2739f530f820e6167f50c79c6eaea Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Wed, 18 Nov 2020 17:31:10 +0100 Subject: [PATCH 2/2] Use legacy node.js in CI Courtesy of aragon CLI. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 94eee3e..0496fc9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ --- language: node_js node_js: - - "lts/*" + - "12" sudo: false dist: xenial