Created
October 25, 2012 21:08
-
-
Save Almad/3955423 to your computer and use it in GitHub Desktop.
grunt spawn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grunt.util.spawn cmd: 'ls', args: ['./node_modules/.bin/nodemon'], (err, result, code) -> | |
console.error 'err', err | |
console.error 'result', result | |
console.error 'code', code | |
grunt.util.spawn cmd: './node_modules/.bin/nodemon', (err, result, code) -> | |
console.error 'err', err | |
console.error 'result', result | |
console.error 'code', code |
Author
Almad
commented
Oct 25, 2012
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment