Initial
This commit is contained in:
12
resources/app/node_modules/xml2js/Cakefile
generated
vendored
Normal file
12
resources/app/node_modules/xml2js/Cakefile
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
{spawn, exec} = require 'child_process'
|
||||
|
||||
task 'build', 'continually build the JavaScript code', ->
|
||||
coffee = spawn 'coffee', ['-cw', '-o', 'lib', 'src']
|
||||
coffee.stdout.on 'data', (data) -> console.log data.toString().trim()
|
||||
|
||||
task 'doc', 'rebuild the Docco documentation', ->
|
||||
exec([
|
||||
'docco src/xml2js.coffee'
|
||||
].join(' && '), (err) ->
|
||||
throw err if err
|
||||
)
|
||||
Reference in New Issue
Block a user