隨着實例的concat
插件,我們可以設置我們Gruntfile.js調試和發佈目標:咕嚕-的contrib手錶與調試和發佈目標
grunt.initConfig({
concat: {
debug: {
},
release: {
},
}
是有可能有多種配置grunt-contrib-watch插件?
做這件事時:
watch: {
debug: {
options: {
livereload: true,
nospawn: true
},
copy: {
files: ['js/app/**/*.js', 'js-amd/**/*.js'],
tasks: ['copy']
}
我得到一個錯誤說verifying property watch.debug.files exists in config
。
這不起作用或者:
watch: {
debug: {
options: {
livereload: true,
nospawn: true
},
files: ['js/app/**/*.js', 'js-amd/**/*.js'],
tasks: ['copy'],
files: ['jade/**/*.jade'],
tasks: ['jade:devmock']
...因爲我不能有兩個files
-arrays或兩個tasks
-arrays。 (它會忽略除第一個以外的所有對象files/tasks
-pair)
是否有其他方法可以實現我想要的?
對不起,我已經試過了。如果你只有一組文件和一組任務,它就可以工作。如果您有更多問題,請參閱已編輯的問題以瞭解會發生什麼 – Cotten
我得到了一個新答案,那是您想要做什麼? –