Hans 601f9b38f8 feat(@angular/cli): move angular-cli to @angular/cli (#4328)
This release is otherwise identical to beta.28.
2017-02-01 18:19:50 -08:00

16 lines
280 B
JavaScript

'use strict';
var CoreObject = require('../ext/core-object');
function Task() {
CoreObject.apply(this, arguments);
}
module.exports = Task;
Task.__proto__ = CoreObject;
Task.prototype.run = function(/*options*/) {
throw new Error('Task needs to have run() defined.');
};