@maizzle/framework 5.0.0-beta.21 → 5.0.0-beta.22
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.
|
|
3
|
+
"version": "5.0.0-beta.22",
|
|
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",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@csstools/css-calc": "^1.2.4",
|
|
52
52
|
"@maizzle/cli": "next",
|
|
53
|
-
"cheerio": "
|
|
53
|
+
"cheerio": "1.0.0-rc.12",
|
|
54
54
|
"chokidar": "^3.6.0",
|
|
55
55
|
"cli-table3": "^0.6.5",
|
|
56
56
|
"color-shorthand-hex-to-six-digit": "^5.0.16",
|
|
@@ -2,11 +2,11 @@ import juice from 'juice'
|
|
|
2
2
|
import postcss from 'postcss'
|
|
3
3
|
import get from 'lodash-es/get.js'
|
|
4
4
|
import has from 'lodash-es/has.js'
|
|
5
|
-
import * as cheerio from 'cheerio/slim'
|
|
6
5
|
import remove from 'lodash-es/remove.js'
|
|
7
6
|
import { render } from 'posthtml-render'
|
|
8
7
|
import { calc } from '@csstools/css-calc'
|
|
9
8
|
import isEmpty from 'lodash-es/isEmpty.js'
|
|
9
|
+
import * as cheerio from 'cheerio/lib/slim'
|
|
10
10
|
import safeParser from 'postcss-safe-parser'
|
|
11
11
|
import isObject from 'lodash-es/isObject.js'
|
|
12
12
|
import { parser as parse } from 'posthtml-parser'
|