hide stdio from lein

This commit is contained in:
Dan Motzenbecker 2015-09-19 13:48:07 -04:00
parent 513857dd49
commit dc6e9e318d
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ init = (projName) ->
"""
log 'Creating Leiningen project'
execSync "lein new #{projNameHyph}"
execSync "lein new #{projNameHyph}", stdio: 'ignore'
log 'Updating Leiningen project'
process.chdir projNameHyph
@ -70,7 +70,7 @@ init = (projName) ->
editSync 'start.sh', [[projNameUnderRx, projNameUs]]
log 'Compiling ClojureScript'
execSync 'lein cljsbuild once dev'
execSync 'lein cljsbuild once dev', stdio: 'ignore'
log 'Creating React Native skeleton'
fs.mkdirSync 'iOS'