From 8c2687c24e1dc9217124caa680ce4e04cfe19f1e Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Tue, 6 Jul 2021 08:22:25 +0100 Subject: [PATCH] Fixed yarn dev refs: https://github.com/TryGhost/Ghost/commit/7e6800b2b88d20942b0a3058a3d16cbab5f9bca7 - I kept flip-flopping on making grunt dev into grunt and removing it so we have to remember to use `yarn dev` and fucked it up entirely - Do the simple thing for now - and think about how we can make grunt dev better overall --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ff8eb01351..35ac34ab5b 100644 --- a/package.json +++ b/package.json @@ -21,8 +21,8 @@ "license": "MIT", "scripts": { "start": "node index", - "dev": "grunt", - "dev:debug": "DEBUG=ghost:* grunt", + "dev": "grunt dev", + "dev:debug": "DEBUG=ghost:* grunt dev", "setup": "yarn install && knex-migrator init && grunt symlink && grunt init || (exit 0)", "main": "grunt shell:main && grunt subgrunt:init", "build": "grunt build",