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
33 changes: 33 additions & 0 deletions .changeset/console-description-drop-fabricated-framework.md
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
---
'@objectstack/console': patch
---

npm `description` no longer names the fabricated `@objectstack/framework`

`@objectstack/console`'s manifest `description` is what npm renders on the
package page, so it was the most-read of the three sites that named a package
nobody can install. The earlier pass corrected the other two — this package's
README and `packages/cli/src/utils/console.ts` — but left the manifest alone
because a published manifest was outside that change's declared file surface.
This is the third and last live site.

The correction is the same one the README took: the mechanism is real and only
the name was wrong. There is no umbrella `@objectstack/framework` package (404
on the public registry, and fabricated — nothing in this tree presents it as
enterprise or private, it is presented as the *default public* install). What
actually pins the two together is that `@objectstack/cli` declares
`@objectstack/console` as a dependency and both ship at one version from the
Changesets `fixed` group.

```diff
-Prebuilt Console SPA pinned to this @objectstack/framework release. Source of truth: …
+Prebuilt Console SPA pinned to this framework release, installed as a dependency of @objectstack/cli. Source of truth: …
```

"framework release" survives as the common noun the README already uses; what
is dropped is the `@objectstack/` scope that turned it into a package name. The
`@object-ui/console` source-of-truth half is unchanged — it was accurate.

Text only: no code, no exports, no behaviour change. It carries a changeset
rather than the publish-nothing exemption because the manifest `description`
ships inside the npm tarball and is a published artifact.
2 changes: 1 addition & 1 deletion packages/console/package.json
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
{
"name": "@objectstack/console",
"version": "17.2.0",
"description": "Prebuilt Console SPA pinned to this @objectstack/framework release. Source of truth: @object-ui/console (https://github.com/objectstack-ai/objectui).",
"description": "Prebuilt Console SPA pinned to this framework release, installed as a dependency of @objectstack/cli. Source of truth: @object-ui/console (https://github.com/objectstack-ai/objectui).",
"license": "Apache-2.0",
"homepage": "https://github.com/objectstack-ai/objectstack/tree/main/packages/console",
"repository": {
Expand Down
Loading