Skip to content

Commit

Permalink
feat: updated change sets and added lint script
Browse files Browse the repository at this point in the history
  • Loading branch information
lordelogos committed Jul 15, 2023
1 parent b5f7677 commit 82017f8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .changeset/late-squids-join.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@
"md-to-react-email": patch
---

### Bug fixes

- Fixed issue with parsing paragraphs
- Converted bold and italics tag to <strong> and <em>
- Fixed issue with parsing nested blockquotes
- Fixed issue with parsing code blocks

### Optimisations

This PR added optimisations for the following:

- Cleaning up unused style tags for the generated markup
- Moved the changesets
- Added CI workflows
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"scripts": {
"build": "tsup",
"demo": "npx tsc src/demo && node src/demo",
"lint": "tsc",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
"esModuleInterop": true,
"noEmit": true,
},
"include": ["src"],
"exclude": ["node_modules", "dist", "example", "rollup.config.js", "pre-planning"]
Expand Down

0 comments on commit 82017f8

Please sign in to comment.