Skip to content

Commit

Permalink
fix: 📢 publish with public access
Browse files Browse the repository at this point in the history
Apparently this is needed the first time one publishes a scoped package.
  • Loading branch information
boredland committed Nov 1, 2024
1 parent c928c36 commit a74bf2c
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"name": "@bgd-labs/rpc-env",
"version": "1.0.1",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"test": "vitest",
Expand Down Expand Up @@ -43,17 +46,11 @@
"vitest": "^2.1.3"
},
"tsup": {
"entry": [
"src/action.ts",
"src/lib.ts"
],
"entry": ["src/action.ts", "src/lib.ts"],
"splitting": false,
"sourcemap": false,
"clean": true,
"dts": true,
"format": [
"esm",
"cjs"
]
"format": ["esm", "cjs"]
}
}

0 comments on commit a74bf2c

Please sign in to comment.