2017-05-29 38 views
0

我正在嘗試使用grunt-browser-sync來觀察jsp和標記文件中的更改,但這同樣不起作用。有人知道發生了什麼嗎? Grunt使用標記和jsp文件?使用grunt-browser-sync觀察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

我需要改變我的代碼路徑此:

bsFiles: { 
    src: [ 
     "web/path/**/*.js", 
     "web/path/css/style.css", 
     "web/**/*.jsp", 
     "web/webroot/path/**/*.tag", 
    ] 
}, 
0

你的文件名匹配模式是錯誤的使用方法:

  bsFiles: { 
       src: ["**/*.js", "*/*.css", "**/*.jsp", "**/*.tag" ] 
      }, 
+0

我這一變化更新我的代碼,但它仍然只適用。 js文件。 'browserSync:{ default_options:{ bsFiles:{「**/*。js」,「*/*。css」,「**/*。jsp」,「**/*。標籤」] }, 選項:{ watchTask:真實, 代理: 「HTTPS://pageteste.local:9001/sitedeteste」 }} } ' –

相關問題