运行 使用 grunt 分发代码

Run distribution code using grunt

我是 g运行tjs 的新人。我已经安装了 g运行t。也有应用程序。我使用 grunt build 缩小了代码。它创建了 /dist 目录,其中包含所有缩小版本的文件。

如何运行这个分发代码(/dist)用于生产使用g运行t。想不通。 grunt serve命令默认进入/app目录

使用像 grunt-contrib-connect (enter 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
            }
        }
    }
    // ...
});

然后 运行 你的 g运行t 任务:

$ grunt connect:dist

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

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