better-svelte-email 2.0.0 → 2.0.1

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 +2 -18
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # better-svelte-email
2
2
 
3
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.
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
5
  >
6
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
7
 
@@ -28,7 +28,7 @@ Minimum **Svelte** version: **5.14.3**.
28
28
  From **`better-svelte-email`** (main export):
29
29
 
30
30
  - **`Renderer`** and **`toPlainText`** — server-side HTML (+ optional plain text) from `.svelte` templates, with Tailwind inlined for email clients
31
- - **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))
32
32
 
33
33
  From **`@better-svelte-email/preview`** (installed as a dependency; import this module name):
34
34
 
@@ -38,22 +38,6 @@ From **`@better-svelte-email/preview`** (installed as a dependency; import this
38
38
 
39
39
  Source: [github.com/Konixy/better-svelte-email](https://github.com/Konixy/better-svelte-email) — this directory is `packages/better-svelte-email`.
40
40
 
41
- ## Development
42
-
43
- From the repository root:
44
-
45
- ```bash
46
- bun run build --filter=better-svelte-email
47
- bun run test --filter=better-svelte-email
48
- ```
49
-
50
- Or from this package:
51
-
52
- ```bash
53
- bun run build
54
- bun run test
55
- ```
56
-
57
41
  ## License
58
42
 
59
43
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "better-svelte-email",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
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",
12
- "@better-svelte-email/preview": "2.0.0",
13
- "@better-svelte-email/server": "2.0.0"
11
+ "@better-svelte-email/components": "2.0.1",
12
+ "@better-svelte-email/preview": "2.0.1",
13
+ "@better-svelte-email/server": "2.0.1"
14
14
  },
15
15
  "exports": {
16
16
  ".": {