ここでファイルをどのように見ることができるのか疑問に思っています:
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-handlebars');
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
handlebars: {
compile: {
files: {
"app/handlebars/handlebars-templates.js" : [
"app/handlebars/*.handlebars"
]
}
}
},
watch: {
handlebars: {
files: [
'<%= handlebars.compile.files %>' <== what to put here ?
],
tasks: 'default'
}
}
});
grunt.registerTask('default', 'handlebars');
};
「app/handlebars/*.handlebars」を配置できますが、動的に正しいパスを取るものを書きたい