mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Removed members references in Gruntfile
refs #10739 These leftover references were causing issues when running grunt commands, now that the files are no longer there.
This commit is contained in:
parent
bb7bb55cf3
commit
e82f625a15
1 changed files with 3 additions and 7 deletions
10
Gruntfile.js
10
Gruntfile.js
|
@ -78,7 +78,6 @@ const configureGrunt = function (grunt) {
|
|||
files: [
|
||||
'core/ghost-server.js',
|
||||
'core/server/**/*.js',
|
||||
'!core/server/lib/members/static/auth/**/*.js',
|
||||
'config.*.json',
|
||||
'!config.testing.json'
|
||||
],
|
||||
|
@ -284,8 +283,7 @@ const configureGrunt = function (grunt) {
|
|||
npmInstall: true
|
||||
},
|
||||
projects: {
|
||||
'core/client': 'init',
|
||||
'core/server/lib/members/static/auth': 'init'
|
||||
'core/client': 'init'
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -294,14 +292,12 @@ const configureGrunt = function (grunt) {
|
|||
},
|
||||
|
||||
prod: {
|
||||
'core/client': 'shell:ember:prod',
|
||||
'core/server/lib/members/static/auth': 'shell:preact:prod'
|
||||
'core/client': 'shell:ember:prod'
|
||||
},
|
||||
|
||||
watch: {
|
||||
projects: {
|
||||
'core/client': ['shell:ember:watch', '--live-reload-base-url="' + urlService.utils.getSubdir() + '/ghost/"'],
|
||||
'core/server/lib/members/static/auth': ['shell:preact:dev']
|
||||
'core/client': ['shell:ember:watch', '--live-reload-base-url="' + urlService.utils.getSubdir() + '/ghost/"']
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue