From 55fd873b375e204dc9b0477b2cc6ed4582e5b603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Tue, 30 May 2023 13:37:49 +0200 Subject: [PATCH] feat: make home server components publishable (#617) --- packages/api-gateway/package.json | 4 +++- packages/auth/package.json | 4 +++- packages/files/package.json | 4 +++- packages/revisions/package.json | 4 +++- packages/syncing-server/package.json | 4 +++- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/packages/api-gateway/package.json b/packages/api-gateway/package.json index b586f2770..951109914 100644 --- a/packages/api-gateway/package.json +++ b/packages/api-gateway/package.json @@ -4,7 +4,6 @@ "engines": { "node": ">=18.0.0 <21.0.0" }, - "private": true, "description": "API Gateway For Standard Notes Services", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", @@ -15,6 +14,9 @@ "repository": "git@github.com:standardnotes/api-gateway.git", "author": "Karol Sójko ", "license": "AGPL-3.0-or-later", + "publishConfig": { + "access": "public" + }, "scripts": { "clean": "rm -fr dist", "build": "tsc --build", diff --git a/packages/auth/package.json b/packages/auth/package.json index 3af995270..c33a69bac 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -4,12 +4,14 @@ "engines": { "node": ">=18.0.0 <21.0.0" }, - "private": true, "description": "Auth Server", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", "author": "Karol Sójko ", "license": "AGPL-3.0-or-later", + "publishConfig": { + "access": "public" + }, "scripts": { "clean": "rm -fr dist", "setup:env": "cp .env.sample .env", diff --git a/packages/files/package.json b/packages/files/package.json index c831bff90..b3955c280 100644 --- a/packages/files/package.json +++ b/packages/files/package.json @@ -4,7 +4,6 @@ "engines": { "node": ">=18.0.0 <21.0.0" }, - "private": true, "description": "Standard Notes Files Server", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", @@ -13,6 +12,9 @@ "Karol Sójko " ], "license": "AGPL-3.0-or-later", + "publishConfig": { + "access": "public" + }, "scripts": { "clean": "rm -fr dist", "setup:env": "cp .env.sample .env", diff --git a/packages/revisions/package.json b/packages/revisions/package.json index 6c34286f9..34aefd9b0 100644 --- a/packages/revisions/package.json +++ b/packages/revisions/package.json @@ -4,13 +4,15 @@ "engines": { "node": ">=18.0.0 <21.0.0" }, - "private": true, "description": "Revisions Server", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", "repository": "git@github.com:standardnotes/server.git", "author": "Karol Sójko ", "license": "AGPL-3.0-or-later", + "publishConfig": { + "access": "public" + }, "scripts": { "clean": "rm -fr dist", "setup:env": "cp .env.sample .env", diff --git a/packages/syncing-server/package.json b/packages/syncing-server/package.json index df952d09e..f62916e7c 100644 --- a/packages/syncing-server/package.json +++ b/packages/syncing-server/package.json @@ -4,13 +4,15 @@ "engines": { "node": ">=18.0.0 <21.0.0" }, - "private": true, "description": "Syncing Server", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", "repository": "git@github.com:standardnotes/syncing-server-js.git", "author": "Karol Sójko ", "license": "AGPL-3.0-or-later", + "publishConfig": { + "access": "public" + }, "scripts": { "clean": "rm -fr dist", "setup:env": "cp .env.sample .env",