pivotal-flow
Version:
🔀 A command-line tool that helps you manage & automate your workflow to use with PivotalTracker.
11 lines (10 loc) • 358 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Use this to test what params you receive when executing a hook & then add them to test cases
* @example "pre-commit": "HUSKY_DEBUG=1 pivotal-flow hooks record-params"
*/
const recordParams = (...params) => {
console.log({ params });
};
exports.default = recordParams;