vigour-wrapper
Version:
The native code to wrap vigour apps
18 lines (15 loc) • 445 B
JavaScript
var Config = require('vigour-config')
var config = new Config()
/* Service is the builder
builder is capable of building for multiple platforms based on templates + lib/builder/* files
*/
// TODO: rename to wrapper
var Service = require('../lib/builder')
var service = new Service(config)
service.start()
.catch(function (reason) {
console.error('Noooo', reason, reason.stack)
process.exit(1)
})