From 419e29c5a656f098ed611b444c320ecc34ada14a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=BCchele?= Date: Tue, 27 Feb 2018 06:07:07 -0800 Subject: [PATCH] adding --ignore-scripts flag to yarn Summary: Travis builds for the website were failing. The problem was due to `yoga-layout` not compiling. However, we don't need to compile `yoga-layout` at all, because we are only using the asm.js version. This adds the `--ignore-scripts` flag to the `yarn` command, to ignore the post-install script which tries to compile yoga. Reviewed By: emilsjolander Differential Revision: D7097154 fbshipit-source-id: 3bf9efda0e2ae6166181dad66621cf6fc9586e88 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 273e6b39..fe3ce3f5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ node_js: install: - cd website -- yarn +- yarn --ignore-scripts - cd .. script: