mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-23 15:36:23 +08:00
16 lines
280 B
JavaScript
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.');
|
|
};
|