Skip to content
Permalink
Browse files

breaking: drop support for Node.js < v10

- handlebars is changing to a policy of only supporting current and active versions of Node.js
  • Loading branch information
ErisDS committed Apr 3, 2020
1 parent 3438891 commit 75794c5dbc23480d9e23abfaa86f8e8efacabe6c
Showing with 4 additions and 4 deletions.
  1. +2 −2 README.markdown
  2. +1 −1 integration-testing/multi-nodejs-test/test.sh
  3. +1 −1 package.json
@@ -79,7 +79,7 @@ Supported Environments

Handlebars has been designed to work in any ECMAScript 3 environment. This includes

- Node.js
- Node.js 10+
- Chrome
- Firefox
- Safari 5+
@@ -110,7 +110,7 @@ Upgrading

See [release-notes.md](https://github.com/wycats/handlebars.js/blob/master/release-notes.md) for upgrade notes.

If you are using Handlebars in production, please regularly look for issues labeled
If you are using Handlebars in production, please regularly look for issues labeled
[possibly breaking](https://github.com/wycats/handlebars.js/issues?q=is%3Aopen+is%3Aissue+label%3A%22possibly+breaking%22).
If this label is applied to an issue, it means that the requested change is probably not a breaking change,
but since Handlebars is widely in use by a lot of people, chances are always there that it breaks somebodies build.
@@ -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"
@@ -18,7 +18,7 @@
"license": "MIT",
"readmeFilename": "README.markdown",
"engines": {
"node": ">=0.4.7"
"node": ">=10"
},
"dependencies": {
"neo-async": "^2.6.0",

0 comments on commit 75794c5

Please sign in to comment.
You can’t perform that action at this time.