@humanspeak/svelte-markdown 0.8.0 โ 0.8.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.
- package/README.md +27 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -25,6 +25,33 @@ A powerful, customizable markdown renderer for Svelte with TypeScript support. B
|
|
|
25
25
|
- ๐งช Comprehensive test coverage (vitest and playwright)
|
|
26
26
|
- ๐ Svelte 5 runes compatibility
|
|
27
27
|
- ๐ก๏ธ XSS protection and sanitization
|
|
28
|
+
- ๐จ Custom Marked extensions support (e.g., GitHub-style alerts)
|
|
29
|
+
- ๐ Improved attribute handling and component isolation
|
|
30
|
+
- ๐ฆ Enhanced token cleanup and nested content support
|
|
31
|
+
|
|
32
|
+
## Recent Updates
|
|
33
|
+
|
|
34
|
+
### New Features
|
|
35
|
+
|
|
36
|
+
- Improved HTML attribute isolation for nested components
|
|
37
|
+
- Enhanced token cleanup for better nested content handling
|
|
38
|
+
- Added proper attribute inheritance control
|
|
39
|
+
- Implemented strict debugging checks in CI/CD pipeline
|
|
40
|
+
|
|
41
|
+
### Testing Improvements
|
|
42
|
+
|
|
43
|
+
- Enhanced Playwright E2E test coverage
|
|
44
|
+
- Added comprehensive tests for custom extensions
|
|
45
|
+
- Improved test reliability with proper component mounting checks
|
|
46
|
+
- Added specific test cases for nested component scenarios
|
|
47
|
+
|
|
48
|
+
### CI/CD Enhancements
|
|
49
|
+
|
|
50
|
+
- Added automated debugging statement detection
|
|
51
|
+
- Improved release workflow with GPG signing
|
|
52
|
+
- Enhanced PR validation and automated version bumping
|
|
53
|
+
- Added manual workflow triggers for better release control
|
|
54
|
+
- Implemented monthly cache cleanup
|
|
28
55
|
|
|
29
56
|
## Installation
|
|
30
57
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@humanspeak/svelte-markdown",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "A powerful, customizable markdown renderer for Svelte with TypeScript support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"svelte",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"github-slugger": "^2.0.0",
|
|
74
74
|
"htmlparser2": "^10.0.0",
|
|
75
|
-
"marked": "^15.0.
|
|
75
|
+
"marked": "^15.0.8"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@eslint/compat": "^1.2.8",
|
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"@testing-library/svelte": "^5.2.7",
|
|
87
87
|
"@testing-library/user-event": "^14.6.1",
|
|
88
88
|
"@types/node": "^22.14.0",
|
|
89
|
-
"@typescript-eslint/eslint-plugin": "^8.29.
|
|
90
|
-
"@typescript-eslint/parser": "^8.29.
|
|
89
|
+
"@typescript-eslint/eslint-plugin": "^8.29.1",
|
|
90
|
+
"@typescript-eslint/parser": "^8.29.1",
|
|
91
91
|
"@vitest/coverage-v8": "^3.1.1",
|
|
92
92
|
"eslint": "^9.24.0",
|
|
93
93
|
"eslint-config-prettier": "^10.1.1",
|
|
@@ -101,10 +101,10 @@
|
|
|
101
101
|
"prettier-plugin-svelte": "^3.3.3",
|
|
102
102
|
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
103
103
|
"publint": "^0.3.10",
|
|
104
|
-
"svelte": "^5.25.
|
|
104
|
+
"svelte": "^5.25.8",
|
|
105
105
|
"svelte-check": "^4.1.5",
|
|
106
106
|
"typescript": "^5.8.3",
|
|
107
|
-
"typescript-eslint": "^8.29.
|
|
107
|
+
"typescript-eslint": "^8.29.1",
|
|
108
108
|
"vite": "^6.2.5",
|
|
109
109
|
"vitest": "^3.1.1"
|
|
110
110
|
},
|