Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
- name: Publish @rezi-ui/ink-compat
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish -w @rezi-ui/ink-compat --access public
run: npm publish ./packages/ink-compat --access public

- name: Publish ink-gradient-shim
env:
Expand Down
6 changes: 5 additions & 1 deletion scripts/release-set-version.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ import { join, resolve } from "node:path";
import { fileURLToPath } from "node:url";

const ROOT = fileURLToPath(new URL("..", import.meta.url));
const EXTRA_RELEASE_PACKAGE_DIRS = ["packages/ink-gradient-shim", "packages/ink-spinner-shim"];
const EXTRA_RELEASE_PACKAGE_DIRS = [
"packages/ink-compat",
"packages/ink-gradient-shim",
"packages/ink-spinner-shim",
];

function die(msg) {
process.stderr.write(`${msg}\n`);
Expand Down
Loading