From bedb896acaa13c8529b5fe49ca217f4e2db67d50 Mon Sep 17 00:00:00 2001 From: peter madsen Date: Mon, 27 Apr 2020 17:28:08 +0200 Subject: [PATCH] bump suggested node_version due to npm bug (#3801) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit node 10.19.0 was bitten by this bug "invalid bin entry" - failing on npm install (sic!) https://github.com/npm/cli/issues/613 see also https://elixirforum.com/t/cant-deploy-phoenix-app-to-heroku/31023 💙 does this need to be "backported" to 1.5 branch to appear on site? --- guides/deployment/heroku.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/deployment/heroku.md b/guides/deployment/heroku.md index 9a20bb9d89..5121bbfb89 100644 --- a/guides/deployment/heroku.md +++ b/guides/deployment/heroku.md @@ -119,7 +119,7 @@ The Phoenix Static buildpack uses a predefined Node version but to avoid surpris ``` # Node version -node_version=10.19.0 +node_version=10.20.1 ``` Please refer to the [configuration section](https://github.com/gjaldon/heroku-buildpack-phoenix-static#configuration) for full details. You can make your own custom build script, but for now we will use the [default one provided](https://github.com/gjaldon/heroku-buildpack-phoenix-static/blob/master/compile).