Giter Site home page Giter Site logo

Comments (7)

Furchin avatar Furchin commented on July 20, 2024

+1

from grunt-exec.

jharding avatar jharding commented on July 20, 2024

If somebody posts a pull request, I'll accept it.

from grunt-exec.

dandv avatar dandv commented on July 20, 2024

There's already a grunt-spawn plugin.

from grunt-exec.

stevenvachon avatar stevenvachon commented on July 20, 2024

grunt-spawn does not have stdio:"inherit". Instead, it appears to have a bunch of over-complication.

from grunt-exec.

dandv avatar dandv commented on July 20, 2024

Hey @fir3pho3nixx, see above.

from grunt-exec.

 avatar commented on July 20, 2024

grunt-spawn has it's own file pattern matching code because when I started out, I quickly found that ant style wildcards and file scanning were not something that was easy to come by, rather than succumb to using regex I opted for roll-my-own. Hence all the carry on :)

If you are after the ability to make stdio: "inherit", you can do this with grunt-spawn today.

It accepts an opts parameter:

opts: { cwd: process.cwd() } -> Pass through mechanism for passing 'opts' to grunt.util.spawn. As long as the 'dontWait' flag is set to false.

This parameter is delegated down to grunt.util.spawn, which in turn would become the opts for the nodejs spawn.

*** snippet from: http://gruntjs.com/api/grunt.util

grunt.util.spawn

Spawn a child process, keeping track of its stdout, stderr and exit code. The method returns a reference to the spawned child. When the child exits, the doneFunction is called.

grunt.util.spawn(options, doneFunction)
The options object has these possible properties:

var options = {
// The command to execute. It should be in the system path.
cmd: commandToExecute,
// If specified, the same grunt bin that is currently running will be
// spawned as the child command, instead of the "cmd" option. Defaults
// to false.
grunt: boolean,
// An array of arguments to pass to the command.
args: arrayOfArguments,
// Additional options for the Node.js child_process spawn method.
opts: nodeSpawnOptions,
// If this value is set and an error occurs, it will be used as the value
// and null will be passed as the error value.
fallback: fallbackValue
};

*** snippet end ***

@stevenvachon - Comments taken on board. Will add milestone to make the code more 'obvious'. Parameters are slightly obfuscated in their current form.

from grunt-exec.

gwicksted avatar gwicksted commented on July 20, 2024

Upcoming version using child_process.spawn instead of child_process.exec.

from grunt-exec.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.