From c8b3a08f24ec063bc54c37e0d22770d77d9c1f5c Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Fri, 5 Aug 2022 10:01:09 +0200 Subject: [PATCH] Fixed linting --- ghost/core/Gruntfile.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ghost/core/Gruntfile.js b/ghost/core/Gruntfile.js index 91265762cf..fd61931cf0 100644 --- a/ghost/core/Gruntfile.js +++ b/ghost/core/Gruntfile.js @@ -148,12 +148,12 @@ module.exports = function (grunt) { const liveReloadBaseUrl = config.getSubdir() || '/ghost/'; switch (mode) { - case 'dev': - return 'npm run build'; - case 'prod': - return 'npm run build:prod'; - case 'watch': - return `npm run start -- --live-reload-base-url=${liveReloadBaseUrl} --live-reload-port=4201`; + case 'dev': + return 'npm run build'; + case 'prod': + return 'npm run build:prod'; + case 'watch': + return `npm run start -- --live-reload-base-url=${liveReloadBaseUrl} --live-reload-port=4201`; } }, options: {