UNPKG

bricks-cli

Version:

Command line tool for developing ambitious ember.js apps

28 lines (24 loc) 715 B
'use strict'; var chalk = require('chalk'); var Task = require('../models/task'); var Watcher = require('../models/watcher'); var Builder = require('../models/builder'); var Promise = require('../ext/promise'); module.exports = Task.extend({ run: function(options) { this.ui.pleasantProgress.start( chalk.green('Building'), chalk.green('.') ); return new Watcher({ ui: this.ui, builder: new Builder({ outputPath: options.outputPath, environment: options.environment }), analytics: this.analytics, options: options }).then(function() { return new Promise(function () {}); // Run until failure or signal to exit }); } });