@maizzle/framework 6.0.0-10 → 6.0.0-11

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/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [6.0.0-11] - 2025-07-16
8
+
9
+ ### Fixed
10
+
11
+ - fix: return posthtml tree from inliner 5d78370
12
+
7
13
  ## [6.0.0-10] - 2025-07-16
8
14
 
9
15
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maizzle/framework",
3
- "version": "6.0.0-10",
3
+ "version": "6.0.0-11",
4
4
  "description": "Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -19,7 +19,7 @@ import { getPosthtmlOptions } from '../posthtml/defaultConfig.js'
19
19
  * @returns {Function} PostHTML tree
20
20
  */
21
21
  export default (options = {}) => tree => {
22
- return inline(render(tree), options)
22
+ return inline(render(tree), options).then(html => parse(html, getPosthtmlOptions()))
23
23
  }
24
24
 
25
25
  /**