better-svelte-email 0.0.2 → 0.0.3
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.
- package/README.md +2 -1
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# better-svelte-email
|
|
2
2
|
|
|
3
|
-
[](https://github.com/Konixy/better-svelte-email/actions/workflows/ci.yml)
|
|
4
3
|
[](https://github.com/Konixy/better-svelte-email/actions/workflows/release.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/better-svelte-email)
|
|
5
|
+
[](https://github.com/Konixy/better-svelte-email/stargazers)
|
|
5
6
|
|
|
6
7
|
A Svelte preprocessor that transforms Tailwind CSS classes in email components to inline styles with responsive media query support.
|
|
7
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "better-svelte-email",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"author": "Anatole",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -46,13 +46,19 @@
|
|
|
46
46
|
".": {
|
|
47
47
|
"types": "./dist/index.d.ts",
|
|
48
48
|
"svelte": "./dist/index.js",
|
|
49
|
-
"
|
|
49
|
+
"import": "./dist/preprocessor/index.js",
|
|
50
|
+
"default": "./dist/preprocessor/index.js"
|
|
50
51
|
},
|
|
51
52
|
"./preprocessor": {
|
|
52
53
|
"types": "./dist/preprocessor/index.d.ts",
|
|
53
54
|
"import": "./dist/preprocessor/index.js",
|
|
54
55
|
"default": "./dist/preprocessor/index.js"
|
|
55
|
-
}
|
|
56
|
+
},
|
|
57
|
+
"./components/*": {
|
|
58
|
+
"types": "./dist/components/*.svelte.d.ts",
|
|
59
|
+
"svelte": "./dist/components/*.svelte"
|
|
60
|
+
},
|
|
61
|
+
"./package.json": "./package.json"
|
|
56
62
|
},
|
|
57
63
|
"description": "A Svelte 5 preprocessor that transforms Tailwind CSS classes in email components to inline styles with responsive media query support",
|
|
58
64
|
"files": [
|