你如何在grunt中使用connect-livereload?

时间:2016-01-31 17:46:01

标签: gruntjs livereload grunt-contrib-connect

我很难让我的服务器重新加载,所以我按照一些链接结束了connect-livereload

然而,当我尝试在我的grunt文件中使用grunt代码时

connect: {
  options: {
    port: 3000,
    hostname: 'localhost'
  },
  dev: {
    options: {
      middleware: function (connect) {
        return [
          require('connect-livereload')(), // <--- here
          checkForDownload,
          mountFolder(connect, '.tmp'),
          mountFolder(connect, 'app')
        ];
      }
    }
  }
}

我在我的grunt控制台中收到此错误:

Warning: checkForDownload is not defined Use --force to continue.

Aborted due to warnings.

connect-livereload的文档非常可怕,没有提及checkForDownloadmountFolder对我的看法。

有人知道吗?

0 个答案:

没有答案