better-svelte-email 2.0.0-beta.4 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,8 +1,15 @@
1
1
  # better-svelte-email
2
2
 
3
+ > [!WARNING]
4
+ > **Compatibility package:** this npm name exists mainly for a **single-install** workflow. It **re-exports** `[@better-svelte-email/server](../server)` and `[@better-svelte-email/components](../components)`, and depends on `[@better-svelte-email/preview](../preview)` so versions stay aligned. It does **not** add its own runtime beyond those re-exports.
5
+ >
6
+ > **Maintenance:** active development targets the scoped packages below. This meta-package **may receive less attention over time** and is not guaranteed to track every new export from the underlying packages—prefer depending on **`@better-svelte-email/*`** directly when you want the clearest upgrade path.
7
+
8
+ ---
9
+
3
10
  Published meta-package for **Better Svelte Email**: render Svelte 5 email templates to HTML with Tailwind CSS inlined for email clients, plus optional preview and send helpers.
4
11
 
5
- This package depends on [`@better-svelte-email/server`](../server), [`@better-svelte-email/components`](../components), and [`@better-svelte-email/preview`](../preview) (the preview package is installed with it so versions stay aligned). The **published main entry** re-exports **components** plus **`Renderer`**, **`toPlainText`**, and related types from the server package. Import preview and SvelteKit helpers from **`@better-svelte-email/preview`** directly. For maximal control you can depend on the scoped packages only and skip this meta-package.
12
+ The **published main entry** re-exports **components** plus **`Renderer`**, **`toPlainText`**, and related types from the server package. Import preview and SvelteKit helpers from **`@better-svelte-email/preview`** directly. For maximal control you can depend on the scoped packages only and skip this meta-package.
6
13
 
7
14
  ## Documentation
8
15
 
@@ -21,7 +28,7 @@ Minimum **Svelte** version: **5.14.3**.
21
28
  From **`better-svelte-email`** (main export):
22
29
 
23
30
  - **`Renderer`** and **`toPlainText`** — server-side HTML (+ optional plain text) from `.svelte` templates, with Tailwind inlined for email clients
24
- - **Email layout components** — `Html`, `Body`, `Container`, `Section`, `Text`, `Button`, … (same as [`@better-svelte-email/components`](../components))
31
+ - **Email layout components** — `Html`, `Body`, `Container`, `Section`, `Text`, `Button`, … (same as `[@better-svelte-email/components](../components)`)
25
32
 
26
33
  From **`@better-svelte-email/preview`** (installed as a dependency; import this module name):
27
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "better-svelte-email",
3
- "version": "2.0.0-beta.4",
3
+ "version": "2.0.0",
4
4
  "author": "Konixy",
5
5
  "repository": {
6
6
  "type": "git",
@@ -8,9 +8,9 @@
8
8
  "directory": "packages/better-svelte-email"
9
9
  },
10
10
  "dependencies": {
11
- "@better-svelte-email/components": "2.0.0-beta.4",
12
- "@better-svelte-email/preview": "2.0.0-beta.4",
13
- "@better-svelte-email/server": "2.0.0-beta.4"
11
+ "@better-svelte-email/components": "2.0.0",
12
+ "@better-svelte-email/preview": "2.0.0",
13
+ "@better-svelte-email/server": "2.0.0"
14
14
  },
15
15
  "exports": {
16
16
  ".": {