使用grunt运行分发代码

时间:2015-04-14 10:31:13

标签: angularjs gruntjs

我是gruntjs的新手。我安装了咕噜声。也有应用程序。我使用grunt build缩小了代码。它创建了/dist目录,其中存在所有缩小版本的文件。

如何使用grunt为生产运行此分发代码(/dist)。无法搞清楚。 grunt serve命令默认采用/app目录

1 个答案:

答案 0 :(得分:1)

使用grunt-contrib-connectenter link description here)之类的套餐。首先安装它:

$ npm install --save-dev grunt-contrib-connect

在你的Gruntfile.js

grunt.loadNpmTasks('grunt-contrib-connect');

// ...
// In your config object
grunt.initConfig({
    // ...
    connect: {
        dist: {
            options: {
                port: 8000,
                base: 'dist',
                keepAlive: true
            }
        }
    }
    // ...
});

然后运行你的咕噜声任务:

$ grunt connect:dist

导航到http://localhost:8000(或更改配置中的端口)。

注意:如果您使用手表,请设置keepAlive: false