4
每當我跑咕嚕玉我得到一個錯誤:咕嚕玉錯誤
Warning: pattern.indexOf is not a function Use --force to continue.
現在,這裏是我的玉任務:
jade: {
options: {
pretty: true
},
all: {
files: {
expand:true,
cwd: 'src/static/jade',
ext: "html",
src: ['src/static/jade/**/*.jade', '!src/static/jade/_includes'],
dest: 'build/'
}
}
}
所以基本上我試圖採取src/static/jade
玉文件(包括除_include
以外的子目錄),並將它們放入build
,保留目錄結構。我已經tryed評論的expand
線,但它給了我:
Warning: Unable to read "src/static/jade" file (Error code: EISDIR). Use --force to continue.
也許我會對此錯誤的方式。我應該如何解決這個問題?
數組的事情是我的問題。我只是添加了ext和cwd選項來嘗試修復錯誤。日Thnx! –