mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
79ce60c580
Replace eslint and prettier with oxlint and oxfmt for faster linting and formatting across the monorepo. Remove all eslint and prettier configs, dependencies, and related packages. Add .oxlintrc.json and .oxfmtrc.json for the new tooling. Update CI workflows and lefthook hooks accordingly. Reformat codebase with oxfmt. https://claude.ai/code/session_01GMkSf29p78HuMR1mbXn8He
42 lines
1020 B
JavaScript
42 lines
1020 B
JavaScript
const path = require("path");
|
|
const { exec, getExecOutput } = require("@actions/exec");
|
|
|
|
const { version } = require("../package.json");
|
|
const tag = `v${version}`;
|
|
const releaseLine = `v${version.split(".")[0]}`;
|
|
|
|
process.chdir(path.join(__dirname, ".."));
|
|
|
|
(async () => {
|
|
const { exitCode, stderr } = await getExecOutput(
|
|
`git`,
|
|
["ls-remote", "--exit-code", "origin", "--tags", `refs/tags/${tag}`],
|
|
{
|
|
ignoreReturnCode: true,
|
|
},
|
|
);
|
|
if (exitCode === 0) {
|
|
console.log(
|
|
`Action is not being published because version ${tag} is already published`,
|
|
);
|
|
return;
|
|
}
|
|
if (exitCode !== 2) {
|
|
throw new Error(`git ls-remote exited with ${exitCode}:\n${stderr}`);
|
|
}
|
|
|
|
await exec("git", ["checkout", "--detach"]);
|
|
await exec("git", ["add", "--force", "dist"]);
|
|
await exec("git", ["commit", "-m", tag]);
|
|
|
|
await exec("changeset", ["tag"]);
|
|
|
|
await exec("git", [
|
|
"push",
|
|
"--force",
|
|
"--follow-tags",
|
|
"origin",
|
|
`HEAD:refs/heads/${releaseLine}`,
|
|
]);
|
|
})();
|