mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 01:50:39 +09:00
chore: automate canary and stable releases
This commit is contained in:
parent
7b9718cbaa
commit
21c1235277
18 changed files with 1536 additions and 1260 deletions
|
|
@ -37,7 +37,7 @@ const workspacePaths = [
|
|||
];
|
||||
|
||||
// Workspace packages that are NOT bundled and must stay as npm dependencies.
|
||||
// These get published separately via Changesets and resolved at runtime.
|
||||
// These get published separately and resolved at runtime.
|
||||
const externalWorkspacePackages = new Set([
|
||||
"@paperclipai/server",
|
||||
]);
|
||||
|
|
@ -57,7 +57,7 @@ for (const pkgPath of workspacePaths) {
|
|||
if (externalWorkspacePackages.has(name)) {
|
||||
const pkgDirMap = { "@paperclipai/server": "server" };
|
||||
const wsPkg = readPkg(pkgDirMap[name]);
|
||||
allDeps[name] = `^${wsPkg.version}`;
|
||||
allDeps[name] = wsPkg.version;
|
||||
continue;
|
||||
}
|
||||
// Keep the more specific (pinned) version if conflict
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue