javascript - Run Grunt Watch without blocking the terminal? -
I have a content file running grants and then there is a clock again on the console when there are some changes.
The problem is that it blocks the terminal.
I am running this as a Visual Studio Post Build Action, which means that the program never launches.
Is there a way to run it, does not block it from?
This looks like my waffle file:
module Exports = function (grunt) {grunt.initConfig ({pkg: grunt.file.readJSON ('package.json'), concat: {JS: {src: ['public / app / ** / * .js'], Dest: 'public / app / app.js'}, css: {src: ['public / app / * * / * .css'], dest: 'public / app / app.css'}}, concurrently: { Watch: ['clock']}, see: {files: ['public / app / ** / * .js',' public / app / ** / * .css', '! Public / app / app.js ','! Public / app / app.css'], work: ['concat']}}); Required ('load grunting-actions') (grunting); Grunt.registerTask ('default', ['concat', 'concurrent: clock']); };
Running a command is possible to rumble as a process:
Previous> Grunt & amp;
Comments
Post a Comment