@maizzle/framework 5.0.0-beta.13 → 5.0.0-beta.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maizzle/framework",
3
- "version": "5.0.0-beta.13",
3
+ "version": "5.0.0-beta.14",
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",
@@ -35,8 +35,6 @@ import {
35
35
 
36
36
  import { readFileConfig } from '../utils/getConfigByFilePath.js'
37
37
 
38
- import { transformers } from '../transformers/index.js'
39
-
40
38
  /**
41
39
  * Compile templates and output to the build directory.
42
40
  * Returns a promise containing an object with files output and the config object.
@@ -238,7 +236,6 @@ export default async (config = {}) => {
238
236
  await config.afterBuild({
239
237
  config,
240
238
  files: allOutputFiles,
241
- transform: transformers,
242
239
  })
243
240
  }
244
241