From 2127e73a74d68253270f7631f247067cd35b593f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Correia?= Date: Fri, 10 Jan 2020 13:09:17 -0300 Subject: [PATCH 1/2] Fixes handlebars dependency Fixes handlebars having 4.6.0 version throwing exception at gulp compile --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fee9f46..d8760d3 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "dependencies": { "gulp-util": "^3.0.3", "through2": "^0.6.3", - "handlebars": ">=3.0.0" + "handlebars": "<=4.5.3" }, "devDependencies": { "mocha": "*" From 6fe7adbaf7abe01e7dea0f989281181ef4c9979c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Correia?= Date: Fri, 10 Jan 2020 13:11:19 -0300 Subject: [PATCH 2/2] More comprehensive versioning of handlebars --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d8760d3..7a43e11 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "dependencies": { "gulp-util": "^3.0.3", "through2": "^0.6.3", - "handlebars": "<=4.5.3" + "handlebars": "3.0.0 - 4.5.3" }, "devDependencies": { "mocha": "*"