srs / gradle-grunt-plugin

Gradle plugin for running Grunt tasks
106 stars 16 forks source link

When I ctrl-C on gradle, my node executed with grunt continues to run #35

Open mrkam opened 8 years ago

mrkam commented 8 years ago

I have the following gradle task:

task serve(type: GruntTask) {
    args = ['execute:serve']
}

which calls grunt-execute task that runs a server for me:

        execute: {
            serve: {
                src: ['static_server.js']
            }
        },

When I press ctrl-C in gradle console with the intent to stop the server, it actually only stops the server and node continues to run detached from its parent. This happens on Windows 7.

brunano21 commented 7 years ago

I have the same issue.