UNPKG

ember-cli-ajh

Version:

Command line tool for developing ambitious ember.js apps

16 lines (10 loc) 273 B
'use strict'; var CoreObject = require('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.'); };