Skip to content

Commit 2ef30c8

Browse files
authored
Fix release (#8)
1 parent 09b910d commit 2ef30c8

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.changeset/test-deployment-fix.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@nylas/connect": patch
3+
---
4+
5+
Fix NPM publishing configuration by adding publishConfig for scoped package access

packages/nylas-connect/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"module": "dist/index.js",
77
"types": "dist/index.d.ts",
88
"type": "module",
9+
"private": false,
910
"exports": {
1011
".": {
1112
"import": "./dist/index.js",
@@ -23,7 +24,7 @@
2324
"typecheck": "tsc --noEmit",
2425
"format": "pnpm --workspace-root prettier --write packages/nylas-connect/",
2526
"format:check": "pnpm --workspace-root prettier --check packages/nylas-connect/",
26-
"lint": "oxlint --fix .",
27+
"lint": "oxlint --fix . && exit 0",
2728
"lint:check": "oxlint .",
2829
"clean": "rm -rf dist",
2930
"test": "vitest run",
@@ -42,6 +43,9 @@
4243
],
4344
"author": "Nylas Inc.",
4445
"license": "MIT",
46+
"publishConfig": {
47+
"access": "public"
48+
},
4549
"packageManager": "[email protected]",
4650
"devDependencies": {
4751
"@types/node": "^20.11.13",

0 commit comments

Comments
 (0)