Skip to content

Commit d18825e

Browse files
Copilothotlong
andcommitted
fix: prevent examples and apps from being published
- Update .changeset/config.json to correctly ignore example packages (changed from @examples/* to @object-ui/example-*) - Add @object-ui/console and @object-ui/site to changeset ignore list - Mark @object-ui/console as private in package.json - Remove publishConfig from @object-ui/console as it's now private All example packages already have "private": true All publishable packages are at unified version 0.5.0 Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 6f7de4d commit d18825e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.changeset/config.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
"baseBranch": "main",
99
"updateInternalDependencies": "patch",
1010
"ignore": [
11-
"@examples/*"
11+
"@object-ui/example-*",
12+
"@object-ui/console",
13+
"@object-ui/site"
1214
]
1315
}

apps/console/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
22
"name": "@object-ui/console",
33
"version": "0.5.0",
4+
"private": true,
45
"description": "ObjectStack Console - The standard runtime UI for ObjectStack applications",
5-
"publishConfig": {
6-
"access": "public"
7-
},
86
"type": "module",
97
"main": "./plugin.js",
108
"exports": {

0 commit comments

Comments
 (0)