chore(functions-compiler): publish the package publicly - #627
Merged
Merged
Conversation
npm charges for private packages, and the @base44 org is not on a plan that allows them, so `npm publish` returns 402 Payment Required while publishConfig.access is "restricted". Nothing in the tarball needs to be private: this repo is public and MIT licensed, @base44/sdk already publishes publicly under the same scope, and as the README already notes the package carries no credentials and ships the same code that is already compiled into every deployed user worker. The README keeps the "internal" framing — public on npm is how apper's bundler service installs it, not an invitation to depend on it. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Contributor
🚀 Package Preview Available!Install this PR's preview build with npm: npm i @base44-preview/cli@0.1.15-pr.627.092ff93Prefer not to change any import paths? Install using npm alias so your code still imports npm i "base44@npm:@base44-preview/cli@0.1.15-pr.627.092ff93"Or add it to your {
"dependencies": {
"base44": "npm:@base44-preview/cli@0.1.15-pr.627.092ff93"
}
}
Preview published to npm registry — try new features instantly! |
yurynix
enabled auto-merge (squash)
September 16, 2026 16:04
netanelgilad
approved these changes
Sep 16, 2026
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.
Note
Description
Flips
@base44/functions-compilerfromrestrictedtopublicnpm publish access so apper's bundler service can install it directly from the registry. Publishing publicly does not make it a supported public API — the CLI still bundles it at build time, so end users never install it, and the package carries no compatibility promise outside this repo. The README's "Status and scope" section is reworded to say exactly that, so the change in visibility is not mistaken for a stability guarantee.Related Issue
None
Type of Change
publishConfig.access)Changes Made
packages/functions-compiler/package.json:publishConfig.accesschanged from"restricted"to"public"packages/functions-compiler/README.md: rewrote the "Status and scope" paragraph — documents that the package is published public for apper's bundler service, while stating it is not a supported public API, that the CLI bundles it at build time so end users never install it, and that it carries no compatibility promise outside this repoTesting
npm test)Checklist
docs/(AGENTS.md) if I made architectural changesAdditional Notes
No source, build, or runtime behavior changes —
publishConfig.accessonly affects registry visibility at publish time, and the CLI's bundling of the compiler is unaffected. Nothing else in the repo referenced the previousrestrictedsetting. The Testing boxes are left unchecked because this diff touches only packaging metadata and prose: there is nothing executable to exercise, and no test run was performed as part of it.🤖 Generated by Claude | 2026-09-16 16:04 UTC | 092ff93