blob: 804be10021124ee155dc301a4d4068b6491c0276 [file] [log] [blame]
// parsing is slow and blocking right now
// so we do it in a separate process
var fs = require('fs'),
parser = require('./parser/pbxproj'),
path = process.argv[2],
fileContents, obj;
try {
fileContents = fs.readFileSync(path, 'utf-8'),
obj = parser.parse(fileContents)
process.send(obj)
process.exit()
} catch (e) {
process.send(e)
process.exit(1)
}