File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
integration-testing/multi-nodejs-test Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ Supported Environments
7979
8080Handlebars has been designed to work in any ECMAScript 3 environment. This includes
8181
82- - Node.js
82+ - Node.js 10+
8383- Chrome
8484- Firefox
8585- Safari 5+
@@ -110,7 +110,7 @@ Upgrading
110110
111111See [ release-notes.md] ( https://github.com/wycats/handlebars.js/blob/master/release-notes.md ) for upgrade notes.
112112
113- If you are using Handlebars in production, please regularly look for issues labeled
113+ If you are using Handlebars in production, please regularly look for issues labeled
114114[ possibly breaking] ( https://github.com/wycats/handlebars.js/issues?q=is%3Aopen+is%3Aissue+label%3A%22possibly+breaking%22 ) .
115115If this label is applied to an issue, it means that the requested change is probably not a breaking change,
116116but since Handlebars is widely in use by a lot of people, chances are always there that it breaks somebodies build.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ cd "$( dirname "$( readlink -f "$0" )" )" || exit 1
1717unset npm_config_prefix
1818
1919echo " Handlebars should be able to run in various versions of NodeJS"
20- for i in 0. 10 0. 12 4 5 6 7 8 9 10 11 ; do
20+ for i in 10 11 12 13 ; do
2121 rm target node_modules package-lock.json -rf
2222 mkdir target
2323 nvm install " $i "
Original file line number Diff line number Diff line change 1818 "license" : " MIT" ,
1919 "readmeFilename" : " README.markdown" ,
2020 "engines" : {
21- "node" : " >=0.4.7 "
21+ "node" : " >=10 "
2222 },
2323 "dependencies" : {
2424 "neo-async" : " ^2.6.0" ,
You can’t perform that action at this time.
0 commit comments