yeoman nodemon观看许多文件使用--watch减少

时间:2014-05-20 19:41:25

标签: yeoman yeoman-generator

使用yeoman generator-angular-fullstack。

使用grunt发布时启动:debug

我明白了:

[ nodemon]正在观看38,946个文件 - 这可能会导致高CPU使用率。减少使用" - 观看"。

如何\我在哪里添加' - 观看'所以它只监控特定的文件夹?

1 个答案:

答案 0 :(得分:2)

Grunt nodemon的配置格式已更改。

nodemon: {
  dev: {
    script: 'index.js',
    options: {
      args: ['dev'],
      nodeArgs: ['--debug'],
      callback: function (nodemon) {
        nodemon.on('log', function (event) {
          console.log(event.colour);
        });
      },
      env: {
        PORT: '8181'
      },
      cwd: __dirname,
      ignore: ['node_modules/**'],
      ext: 'js,coffee',
      watch: ['server'],
      delay: 1,
      legacyWatch: true
    }
  },
  exec: {
    options: {
      exec: 'less'
    }
  }
}

请参阅https://github.com/ChrisWren/grunt-nodemon以获取更改信息。