We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb5be3f commit 08da520Copy full SHA for 08da520
lib/consolidate.js
@@ -1772,9 +1772,9 @@ exports.twing = fromStringRenderer('twing');
1772
*/
1773
1774
exports.twing.render = function(str, options, cb) {
1775
- if (!semver.satisfies(process.version, '>=6.0.0')) {
+ if (!semver.satisfies(process.version, '>=8.0.0')) {
1776
return promisify(cb, function(cb) {
1777
- throw new Error('This node version is not supported for Twing. Please upgrade to at least node version 6.0.0 or a recommended version >=8.x');
+ throw new Error('This node version is not supported for Twing 4 (used in consolidate/express.js). Please upgrade to at least node version >=8.x');
1778
});
1779
}
1780
0 commit comments