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:
parent
8383b11d84
commit
515d6936f0
1 changed files with 2 additions and 1 deletions
|
@ -85,10 +85,11 @@ const configureGrunt = function (grunt) {
|
||||||
},
|
},
|
||||||
express: {
|
express: {
|
||||||
files: [
|
files: [
|
||||||
'core/ghost-server.js',
|
|
||||||
'core/server/**/*.js',
|
'core/server/**/*.js',
|
||||||
'core/shared/**/*.js',
|
'core/shared/**/*.js',
|
||||||
'core/frontend/**/*.js',
|
'core/frontend/**/*.js',
|
||||||
|
'core/index.js',
|
||||||
|
'index.js',
|
||||||
'config.*.json',
|
'config.*.json',
|
||||||
'!config.testing.json'
|
'!config.testing.json'
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Reference in a new issue