16 lines
448 B
JavaScript
Executable File
16 lines
448 B
JavaScript
Executable File
import { exec } from "child_process";
|
|
|
|
export function preCommit({ tag, version }) {
|
|
exec("jq --indent 4 . package.json > tmp.json && mv tmp.json package.json", (error, stdout, stderr) => {
|
|
if (error) {
|
|
console.error(`exec error: ${error}`);
|
|
return;
|
|
}
|
|
if (stderr) {
|
|
console.error(`stderr: ${stderr}`);
|
|
return;
|
|
}
|
|
console.log(`stdout: ${stdout}`);
|
|
});
|
|
}
|