我尝试使用grunt-browser-sync来监视jsp和标记文件中的更改,但同样无法正常工作。有人知道发生了什么吗? Grunt使用tag和jsp文件吗?
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
watch: {
// hide code
},
less: {
// hide code
},
// hide code
browserSync: {
default_options: {
bsFiles: {
src: ["**/*.js", "*/*.css", "**/*.jsp", "**/*.tag" ]
},
options: {
watchTask: true,
proxy: "https://pageteste.local:9001/sitedeteste"
}
}
}
});
// Plugins
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks("grunt-browser-sync");
// Browser sync task
grunt.registerTask("server", ["browserSync", "watch"]);
// Default task(s).
grunt.registerTask('default', ['less', 'sprite', 'sync']);
};
答案 0 :(得分:0)
您的通配模式使用错误:
bsFiles: {
src: ["**/*.js", "*/*.css", "**/*.jsp", "**/*.tag" ]
},
答案 1 :(得分:0)
我需要更改我的代码路径:
bsFiles: {
src: [
"web/path/**/*.js",
"web/path/css/style.css",
"web/**/*.jsp",
"web/webroot/path/**/*.tag",
]
},