我使用load-grunt-tasks
将我的Grunt文件拆分为多个文件,但在使用ftp-deploy时似乎出错了。我尝试了一些不同的东西,但我在" ftp-deploy"中推断出连字符( - )。可能会导致问题。
我收到以下错误:
Running "ftp-deploy:theme" (ftp-deploy) task
Verifying property ftp-deploy.theme exists in config...ERROR
>> Unable to process task.
Warning: Required config property "ftp-deploy.theme" missing. Use --force to continue.
运行时:
grunt "ftp-deploy:theme" --verbose
我的ftp-deploy脚本如下所示:
# FTP DEPLOY
# -------
module.exports =
'ftp-deploy':
theme:
auth:
host: 'host.com'
port: 21
authKey: 'key'
src: 'drupal/sites/all/themes/theme_name'
dest: 'www/host.com/sites/all/themes/theme_name'
我尝试过运行它而不将其包含在"主题中:"有效的对象,但基本上不是我想要做的,因为我有不同的文件夹要传输。
对解决方案可能有什么想法?
答案 0 :(得分:0)
我自己找到了答案。
'ftp-deploy':
当然不应该包含在文件中。