Skip to content

Commit 82017f8

Browse files
committed
feat: updated change sets and added lint script
1 parent b5f7677 commit 82017f8

3 files changed

Lines changed: 13 additions & 1 deletion

File tree

.changeset/late-squids-join.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,17 @@
22
"md-to-react-email": patch
33
---
44

5+
### Bug fixes
6+
57
- Fixed issue with parsing paragraphs
68
- Converted bold and italics tag to <strong> and <em>
79
- Fixed issue with parsing nested blockquotes
810
- Fixed issue with parsing code blocks
11+
12+
### Optimisations
13+
14+
This PR added optimisations for the following:
15+
16+
- Cleaning up unused style tags for the generated markup
17+
- Moved the changesets
18+
- Added CI workflows

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"scripts": {
2323
"build": "tsup",
2424
"demo": "npx tsc src/demo && node src/demo",
25+
"lint": "tsc",
2526
"test": "jest --coverage",
2627
"test:watch": "jest --watch"
2728
},

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"noUnusedLocals": true,
1818
"noUnusedParameters": true,
1919
"allowSyntheticDefaultImports": true,
20-
"esModuleInterop": true
20+
"esModuleInterop": true,
21+
"noEmit": true,
2122
},
2223
"include": ["src"],
2324
"exclude": ["node_modules", "dist", "example", "rollup.config.js", "pre-planning"]

0 commit comments

Comments
 (0)