@bconnorwhite/bob
Version:
Bob is a toolkit for TypeScript projects
39 lines (29 loc) • 1.55 kB
JavaScript
;
exports.__esModule = true;
exports.initSource = initSource;
exports.initSourceAction = initSourceAction;
exports["default"] = void 0;
var _commanderVersion = require("commander-version");
var _structure = require("../../structure");
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
function initSource(_x) {
return _initSource.apply(this, arguments);
}
function _initSource() {
_initSource = _asyncToGenerator(function* (_ref) {
var index = _ref.index;
var sourceIndex = (0, _structure.getSourceIndex)();
return sourceIndex.exists().then(function (exists) {
if (!exists) {
sourceIndex.write(index);
}
});
});
return _initSource.apply(this, arguments);
}
function initSourceAction(args) {
initSource(args);
}
var _default = (0, _commanderVersion.createCommand)("source").description("initialize source directory").action(initSourceAction);
exports["default"] = _default;