diff --git a/.changeset/late-squids-join.md b/.changeset/late-squids-join.md index 2773574..beee4e2 100644 --- a/.changeset/late-squids-join.md +++ b/.changeset/late-squids-join.md @@ -2,7 +2,17 @@ "md-to-react-email": patch --- +### Bug fixes + - Fixed issue with parsing paragraphs - Converted bold and italics tag to and - 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 diff --git a/package.json b/package.json index f6f3253..17c716b 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "scripts": { "build": "tsup", "demo": "npx tsc src/demo && node src/demo", + "lint": "tsc", "test": "jest --coverage", "test:watch": "jest --watch" }, diff --git a/tsconfig.json b/tsconfig.json index e57ccc0..2e6727f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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"]