breaking: drop support for Node.js < v10

- handlebars is changing to a policy of only supporting current and active versions of Node.js
This commit is contained in:
Hannah Wolfe
2020-04-03 20:03:37 +01:00
parent 3438891bd2
commit 75794c5dbc
3 changed files with 4 additions and 4 deletions
@@ -17,7 +17,7 @@ cd "$( dirname "$( readlink -f "$0" )" )" || exit 1
unset npm_config_prefix
echo "Handlebars should be able to run in various versions of NodeJS"
for i in 0.10 0.12 4 5 6 7 8 9 10 11 ; do
for i in 10 11 12 13 ; do
rm target node_modules package-lock.json -rf
mkdir target
nvm install "$i"