more output

This commit is contained in:
AJ ONeal 2018-06-14 10:43:25 +00:00
parent 20f59b6af7
commit 97e5a847b8
1 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,7 @@
'use strict';
module.exports = function () {
return "placeholder upgrade: nothing to do yet";
module.exports = function (pkg, root, cb) {
process.nextTick(function () {
cb(null, { message: "upgrade complete" });
});
return { message: "placeholder upgrade: nothing to do yet" };
};