3

我快要开始grunt-browser-sync工作了,但还没有完成。

我想出了这个 Gruntfile:

module.exports = function(grunt) {    
    grunt.initConfig({
        pkg : grunt.file.readJSON('package.json'),
        concat : {
            dist : {
                src : ['js/libs/*.js', 'js/custom/*.js'],
                dest : 'js/build/production.js',
            }
        },
        uglify : {
            dist : {
                src : 'js/build/production.js',
                dest : 'js/build/production.min.js'
            }
        },
        sass : {
            dist : {
                options : {
                    style : 'compressed',
                    compass : 'true',
                },
                files : {
                    'css/main.css' : 'sass/main.scss'
                }
            }
        },
        autoprefixer : {
            options : {
                browsers : ['> 5%', 'last 2 version', 'ie 8', 'ie 9']
            },
            dist : {
                files : {
                    'css/main.css' : 'css/main.css'
                }
            }
        },
        watch : {
            options : {
                livereload : true

            },
            content : {
                files : '*.html',
                tasks : ['browserSync']

            },
            scripts : {
                files : ['js/libs/*.js', 'js/custom/*.js'],
                tasks : ['concat', 'uglify', 'browserSync'],
                options : {
                    spawn : false,
                },
            },
            css : {
                files : ['sass/**/*.scss'],
                tasks : ['sass', 'autoprefixer', 'browserSync'],
                options : {
                    spawn : false,
                }
            }
        },
        browserSync : {
            files : {
                src : ['css/*.css', 'images/*.*', 'js/build/production.min.js', '*.html'],
            },
            options : {     
                server: {
                    baseDir: "./",
                },  
                watchTask : true
            }
        }
    });
    grunt.loadNpmTasks('grunt-contrib-watch');
    grunt.loadNpmTasks('grunt-browser-sync');
    grunt.loadNpmTasks('grunt-contrib-sass');
    grunt.loadNpmTasks('grunt-contrib-concat');
    grunt.loadNpmTasks('grunt-contrib-uglify');
    grunt.loadNpmTasks('grunt-autoprefixer');
    grunt.loadNpmTasks('grunt-newer');
    grunt.registerTask('newer', ['browserSync', 'sass', 'autoprefixer', 'concat', 'uglify']);
};

我想要的是以下内容:

  1. grunt watch在终端上键入并自动index.html在我的浏览器上的静态服务器页面中打开我的。
  2. 当 CSS、JS 或图像更改时实时重新加载的页面。

我的配置会发生以下情况:

  1. 仅当我保存文件时才会打开新的浏览器窗口
  2. 每次我保存一些东西时,都会打开多个浏览器窗口,并且localhost数字不断变化,使插件完全没用

Grunt watch 任务的输出

我知道我已经在文件的每个可能的地方注册了,但这是 browser-sync做某事tasks : ['browserSync']的唯一方式。我希望这已经足够了:

grunt.registerTask('newer', ['browserSync', 'sass', 'autoprefixer', 'concat', 'uglify']);

但我没有运气。浏览器同步触发,但没有打开静态服务器。

4

1 回答 1

7

BrowserSync作者在这里。

问题是您多次启动 BrowserSync 任务 - 这不是使用它的正确方法。

检查http://www.browsersync.io/docs/grunt/上的示例- 您应该独立(和之前)启动 BrowserSync 任何其他类似的监视任务。

// This shows a full config file!
module.exports = function (grunt) {
    grunt.initConfig({
        watch: {
            files: "assets/scss/**/*.scss",
            tasks: ['compass']
        },
        compass: {
            dist: {
                options: {
                    sassDir: 'assets/scss',
                    cssDir: 'assets/css',
                    outputStyle: 'compressed'
                }
            }
        },
        browserSync: {
            dev: {
                bsFiles: {
                    src : 'assets/css/*.css'
                },
                options: {
                    watchTask: true // < VERY important
                }
            }
        }
    });

    // load npm tasks
    grunt.loadNpmTasks('grunt-contrib-compass');
    grunt.loadNpmTasks('grunt-contrib-watch');
    grunt.loadNpmTasks('grunt-browser-sync');

    // start browsersync and then initiate the watch AFTER
    grunt.registerTask('default', ["browserSync", "watch"]);
};
于 2014-09-16T18:38:08.480 回答