From 89172f280f6032a7f3c3b14a9c99b847902c325d Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Tue, 3 Oct 2017 12:43:09 +0200 Subject: [PATCH] Change yarn dep version range specification In theory the caret `^` should work but as rochoa pointed out it does not. So changing it (also for the sake of clarity). --- INSTALL.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 11cf7db8..45654b0b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -5,7 +5,7 @@ Make sure that you have the requirements needed. These are - Core - Node.js >=6.9.x - - yarn >=0.27.5 + - yarn >=0.27.5 <1.0.0 - PostgreSQL >8.3.x, PostGIS >1.5.x - Redis >2.4.0 (http://www.redis.io) - Mapnik >3.x. See [Installing Mapnik](https://github.com/CartoDB/Windshaft#installing-mapnik). diff --git a/package.json b/package.json index 6532a04e..fd857e96 100644 --- a/package.json +++ b/package.json @@ -62,6 +62,6 @@ }, "engines": { "node": ">=6.9", - "yarn": "^0.27.5" + "yarn": ">=0.27.5 <1.0.0" } }