mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 10:05:18 +00:00
chore(release): update version to 0.3.1
This commit is contained in:
parent
76586f409f
commit
6d7e67fe72
23 changed files with 33 additions and 32 deletions
|
|
@ -278,7 +278,8 @@ export async function publishNpmLibraries(opts: ReleaseOpts) {
|
|||
// Exclude CLI and gigacode directories (handled by publishNpmCli)
|
||||
const libraries = all.filter(p => {
|
||||
const rel = relative(opts.root, p.dir);
|
||||
return !rel.startsWith("sdks/cli/") && !rel.startsWith("sdks/gigacode/");
|
||||
return !(rel === "sdks/cli" || rel.startsWith("sdks/cli/")) &&
|
||||
!(rel === "sdks/gigacode" || rel.startsWith("sdks/gigacode/"));
|
||||
});
|
||||
|
||||
const sorted = topoSort(libraries);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue