Extending ionic tool to have multiple task support.

This commit is contained in:
Max Lynch
2013-09-08 21:52:33 -05:00
parent 6c89a3d68e
commit 6ae11762f0
4 changed files with 73 additions and 21 deletions

View File

@ -0,0 +1,13 @@
var fs = require('fs'),
ncp = require('ncp').ncp,
path = require('path'),
IonicTask = require('./task').IonicTask;
var IonicStartTask = function() {
}
IonicStartTask.prototype = new IonicTask();
IonicStartTask.prototype.run = function(ionic) {
};

View File

@ -0,0 +1,9 @@
var IonicTask = function() {
};
IonicTask.prototype = {
run: function(ionic) {
}
};
exports.IonicTask = IonicTask;