Skip to content

Commit 838ba5d

Browse files
committed
Fix package publish settings
1 parent ee232b4 commit 838ba5d

File tree

6 files changed

+20
-0
lines changed

6 files changed

+20
-0
lines changed

.changeset/heavy-peas-say.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@pydantic/logfire-cf-workers": patch
3+
"@pydantic/logfire-api": patch
4+
"logfire": patch
5+
---
6+
7+
Fix packages publish settings.

examples/express/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "@pydantic/logfire-express-example",
3+
"private": true,
34
"version": "1.0.0",
45
"main": "index.js",
56
"type": "module",

examples/node/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "@pydantic/logfire-node-example",
3+
"private": true,
34
"version": "1.0.0",
45
"main": "index.ts",
56
"type": "module",

packages/logfire-api/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "@pydantic/logfire-api",
3+
"private": false,
34
"description": "JavaScript API for Logfire - https://pydantic.dev/logfire",
45
"author": {
56
"name": "The Pydantic Team",
@@ -9,6 +10,9 @@
910
"sideEffects": false,
1011
"homepage": "https://pydantic.dev/logfire",
1112
"license": "MIT",
13+
"publishConfig": {
14+
"access": "public"
15+
},
1216
"keywords": [
1317
"logfire",
1418
"observability",

packages/logfire-cf-workers/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "@pydantic/logfire-cf-workers",
3+
"private": false,
34
"description": "Cloudflare workers integration for Logfire - https://pydantic.dev/logfire",
45
"author": {
56
"name": "The Pydantic Team",
@@ -9,6 +10,9 @@
910
"sideEffects": false,
1011
"homepage": "https://pydantic.dev/logfire",
1112
"license": "MIT",
13+
"publishConfig": {
14+
"access": "public"
15+
},
1216
"keywords": [
1317
"logfire",
1418
"observability",

packages/logfire/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
"sideEffects": false,
1010
"homepage": "https://pydantic.dev/logfire",
1111
"license": "MIT",
12+
"publishConfig": {
13+
"access": "public"
14+
},
1215
"keywords": [
1316
"logfire",
1417
"observability",

0 commit comments

Comments
 (0)