fix(client-ts): ship the Apache-2.0 LICENSE in the npm package - #1032
Open
sudo-ai-git wants to merge 1 commit into
Open
sudo-ai-git wants to merge 1 commit into
sudo-ai-git wants to merge 1 commit into
Conversation
Member
|
Thank you for adding the LICENSE to the TypeScript package; the npm tarball check confirms it is included. DCO still fails because commit 93ea383 does not contain your Signed-off-by trailer. Please sign off that commit yourself, narrow the PR wording so it does not claim to close all of #969 while other published packages remain uncovered, rebase onto current main, and force-push the updated branch. |
sudo-ai-git
force-pushed
the
fix/ship-license-in-ts-client
branch
from
September 6, 2026 05:23
93ea383 to
2fb68f8
Compare
…ent npm package Part of caura-ai#969 (TypeScript client). The package declared license: Apache-2.0 but its files array never included a LICENSE, so the npm tarball shipped none. Copy the repo-root LICENSE into clients/typescript/ and add "LICENSE" to the files array so the tarball carries it. Verified: npm pack --dry-run shows exactly one LICENSE (11.4kB) in Tarball Contents. Signed-off-by: sudo-ai-git <sudo-ai-git@users.noreply.github.com>
sudo-ai-git
force-pushed
the
fix/ship-license-in-ts-client
branch
from
September 7, 2026 14:36
2fb68f8 to
aaf4066
Compare
Author
This branch has not been deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Part of #969 (TypeScript / @caura/memclaw-client only).
Problem:
clients/typescript/package.jsondeclareslicense: Apache-2.0but itsfilesarray never included a LICENSE, so the npm tarball shipped none.Change: copy the repo-root
LICENSEintoclients/typescript/and add"LICENSE"to thefilesarray.Verified:
npm pack --dry-runshows exactly one LICENSE (11.4kB) in Tarball Contents. Commit is signed off (DCO).Scope is intentionally limited to the TypeScript client; the other packages in #969 (remaining npm-client/client dirs) are not touched here. Companion to #1031 (Python client).