From 0834d11c6454b54072672c6871cecd3e3a8e1337 Mon Sep 17 00:00:00 2001 From: Pato Perpetua Date: Sat, 29 Aug 2026 20:57:13 +1000 Subject: [PATCH 1/4] docs: list all published packages in packages/README.md Closes #72 Co-authored-by: Cursor --- packages/README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/packages/README.md b/packages/README.md index 4e80b74..b953845 100644 --- a/packages/README.md +++ b/packages/README.md @@ -2,9 +2,14 @@ Public npm packages under `@singleton-sd/post-kit-*`. -| Package | npm name | -| --- | --- | -| [`post-kit-email`](./post-kit-email/) | `@singleton-sd/post-kit-email` | +| Package | npm name | Description | +| --- | --- | --- | +| [`post-kit-client`](./post-kit-client/README.md) | `@singleton-sd/post-kit-client` | Trusted server-side TypeScript client for the PostKit API | +| [`post-kit-compiler`](./post-kit-compiler/README.md) | `@singleton-sd/post-kit-compiler` | Template compiler — validates and compiles EmailBuilder.js source into deployable HTML | +| [`post-kit-editor`](./post-kit-editor/README.md) | `@singleton-sd/post-kit-editor` | React admin editor component for PostKit email templates | +| [`post-kit-email`](./post-kit-email/) | `@singleton-sd/post-kit-email` | Provider-agnostic transactional email (Forward Email) for PostKit | +| [`post-kit-publisher`](./post-kit-publisher/README.md) | `@singleton-sd/post-kit-publisher` | Compile and publish PostKit email templates to Azure Blob Storage | +| [`post-kit-types`](./post-kit-types/README.md) | `@singleton-sd/post-kit-types` | Shared TypeScript contracts for the PostKit platform | -Publishable packages are `"private": false`. The workspace root stays private -and is not published. +All packages above are published to npm (`"private": false`). The workspace root +stays private and is not published. From 7b15c768e5803a4644872faddec5b40bd16800fe Mon Sep 17 00:00:00 2001 From: Pato Perpetua Date: Sun, 30 Aug 2026 13:35:00 +1000 Subject: [PATCH 2/4] docs: clarify packages are configured for publication, not yet on npm Addresses CodeRabbit review on #73. Co-authored-by: Cursor --- packages/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/README.md b/packages/README.md index b953845..7a3e603 100644 --- a/packages/README.md +++ b/packages/README.md @@ -11,5 +11,5 @@ Public npm packages under `@singleton-sd/post-kit-*`. | [`post-kit-publisher`](./post-kit-publisher/README.md) | `@singleton-sd/post-kit-publisher` | Compile and publish PostKit email templates to Azure Blob Storage | | [`post-kit-types`](./post-kit-types/README.md) | `@singleton-sd/post-kit-types` | Shared TypeScript contracts for the PostKit platform | -All packages above are published to npm (`"private": false`). The workspace root -stays private and is not published. +All packages above are configured for public npm publication (`"private": false`). +The workspace root stays private and is not published. From e008a5b62ae62b4a1af15d2ec102cbae2dd436e5 Mon Sep 17 00:00:00 2001 From: Pato Perpetua Date: Sun, 30 Aug 2026 13:43:28 +1000 Subject: [PATCH 3/4] docs: describe workspace packages as public npm packages Clarifies these are public packages, not private workspace-only modules. Co-authored-by: Cursor --- packages/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/README.md b/packages/README.md index 7a3e603..b20f463 100644 --- a/packages/README.md +++ b/packages/README.md @@ -11,5 +11,5 @@ Public npm packages under `@singleton-sd/post-kit-*`. | [`post-kit-publisher`](./post-kit-publisher/README.md) | `@singleton-sd/post-kit-publisher` | Compile and publish PostKit email templates to Azure Blob Storage | | [`post-kit-types`](./post-kit-types/README.md) | `@singleton-sd/post-kit-types` | Shared TypeScript contracts for the PostKit platform | -All packages above are configured for public npm publication (`"private": false`). -The workspace root stays private and is not published. +All packages above are public npm packages (`"private": false` in each +`package.json`). The workspace root is private and is not published. From bd7e2be7d9453525598505a6b086a51232f18403 Mon Sep 17 00:00:00 2001 From: Pato Perpetua Date: Sun, 30 Aug 2026 13:59:15 +1000 Subject: [PATCH 4/4] docs: remove inaccurate packages README footnote The intro already identifies these as public npm packages; the private field footnote was misleading. Co-authored-by: Cursor --- packages/README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/README.md b/packages/README.md index b20f463..65a6a48 100644 --- a/packages/README.md +++ b/packages/README.md @@ -10,6 +10,3 @@ Public npm packages under `@singleton-sd/post-kit-*`. | [`post-kit-email`](./post-kit-email/) | `@singleton-sd/post-kit-email` | Provider-agnostic transactional email (Forward Email) for PostKit | | [`post-kit-publisher`](./post-kit-publisher/README.md) | `@singleton-sd/post-kit-publisher` | Compile and publish PostKit email templates to Azure Blob Storage | | [`post-kit-types`](./post-kit-types/README.md) | `@singleton-sd/post-kit-types` | Shared TypeScript contracts for the PostKit platform | - -All packages above are public npm packages (`"private": false` in each -`package.json`). The workspace root is private and is not published.