0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Updated watch to cover all server JS files

- watch wasn't restarting the dev env if you edit the index.js or core/index.js
- these files aren't changed often, but it's still important that Ghost restarts when they do!
This commit is contained in:
Hannah Wolfe 2020-05-01 17:59:38 +01:00
parent 8383b11d84
commit 515d6936f0

View file

@ -85,10 +85,11 @@ const configureGrunt = function (grunt) {
},
express: {
files: [
'core/ghost-server.js',
'core/server/**/*.js',
'core/shared/**/*.js',
'core/frontend/**/*.js',
'core/index.js',
'index.js',
'config.*.json',
'!config.testing.json'
],