prepush-if-changed
Version:
A tool that runs your commands if any git-pushed files match the glob written to be used as a pre-push hook
58 lines (44 loc) • 2.04 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
require("@babel/polyfill");
var _cosmiconfig = require("cosmiconfig");
var _executeIfMatches = _interopRequireDefault(require("./executeIfMatches"));
var _package = require("../package.json");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
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); }); }; }
var main =
/*#__PURE__*/
function () {
var _ref = _asyncToGenerator(
/*#__PURE__*/
regeneratorRuntime.mark(function _callee() {
var _ref2, config;
return regeneratorRuntime.wrap(function _callee$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
_context.next = 2;
return (0, _cosmiconfig.cosmiconfig)(_package.name, {
searchPlaces: ['package.json', '.prepushrc', '.prepushrc.json', '.prepushrc.yaml', '.prepushrc.yml', '.prepushrc.js', 'prepush.config.js']
}).search();
case 2:
_ref2 = _context.sent;
config = _ref2.config;
(0, _executeIfMatches["default"])(config);
case 5:
case "end":
return _context.stop();
}
}
}, _callee);
}));
return function main() {
return _ref.apply(this, arguments);
};
}();
var _default = main;
exports["default"] = _default;
;