From 24bed70dc1d269f0c09612f14a4e39b16d6731fd Mon Sep 17 00:00:00 2001 From: Julian Dax Date: Fri, 20 Sep 2019 19:43:33 +0200 Subject: [PATCH] Install parse-server 3.9.0 insted of 2.2 (#6069) The script currently writes a package.json with a dependency on parse-server version 2.2. This should probably always be automatically updated to the latest version using some CI magic. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 9446016d..c36f0ad4 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -163,7 +163,7 @@ cat > ./package.json << EOF "start": "parse-server config.json" }, "dependencies": { - "parse-server": "^2.0.0" + "parse-server": "^3.9.0" } } EOF