From bd1dbd51c7fe0f1ac47f69e27b3f1c2651c2d97f Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Fri, 5 Mar 2021 13:28:15 +0000 Subject: [PATCH] Updated default Ghost compatibility in release script no issue - not important, but it saves manually entering it during the release process - Casper is only compatible with Ghost 4.0 moving forwards --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 4fc3133..e09df6f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -121,7 +121,7 @@ exports.release = async () => { type: 'input', name: 'compatibleWithGhost', message: 'Which version of Ghost is it compatible with?', - default: '3.0.0' + default: '4.0.0' }]); const compatibleWithGhost = result.compatibleWithGhost;