4

ゴール:

デーモンとしてwatchタスクを実行しようとしています。Gruntfile.js

通常、このスクリプトを次のように実行しますgrunt watch

Gruntfile.js:

module.exports = function(grunt) {

  grunt.initConfig({
    concat: {
      options: {
        separator: ''
      },
      dist: {
        src: ['static/js/**/*.js'],
        dest: 'app.js'
      }
    },
    watch: {
      files: ['<%= concat.dist.src %>'],
      tasks: ['concat']
    }
  });

  grunt.loadNpmTasks('grunt-contrib-watch');
  grunt.loadNpmTasks('grunt-contrib-concat');
};

質問:

デーモンとしてスポーンするにはどうすればよいですか?grunt watch

アップデート:

これに関する考慮事項はすでに行われているようです:
https://github.com/shama/grunt-hub#watching-forever
https://github.com/shama/grunt-hub/issues/3

4

2 に答える 2

0

私はJavaScriptの初心者ですが、この問題をtmuxで解決しました

  1. git などの単純な操作のための 1 つのペイン。
  2. その他は「イサキ時計」用

コンソールを閉じても、tmux は見続けます:D
http://i.imgur.com/9L04OGe.jpg

于 2014-05-09T20:57:40.947 に答える