@maizzle/framework 4.8.1 → 4.8.3

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": "4.8.1",
3
+ "version": "4.8.3",
4
4
  "description": "Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.",
5
5
  "license": "MIT",
6
6
  "main": "src/index.js",
@@ -46,7 +46,7 @@
46
46
  "autoprefixer": "^10.4.14",
47
47
  "browser-sync": "^3.0.2",
48
48
  "color-shorthand-hex-to-six-digit": "^3.0.2",
49
- "email-comb": "^5.2.0",
49
+ "email-comb": "^5.3.1",
50
50
  "fast-glob": "^3.3.2",
51
51
  "front-matter": "^4.0.0",
52
52
  "fs-extra": "^11.2.0",
@@ -59,7 +59,7 @@
59
59
  "postcss-import": "^15.0.0",
60
60
  "postcss-merge-longhand": "^6.0.0",
61
61
  "posthtml": "^0.16.6",
62
- "posthtml-attrs-parser": "^0.1.1",
62
+ "posthtml-attrs-parser": "^0.1.2",
63
63
  "posthtml-base-url": "^2.0.2",
64
64
  "posthtml-component": "^1.1.0",
65
65
  "posthtml-content": "^1.0.2",
@@ -81,7 +81,7 @@
81
81
  "devDependencies": {
82
82
  "@types/browser-sync": "^2.29.0",
83
83
  "@types/js-beautify": "^1.14.0",
84
- "@types/markdown-it": "^13.0.0",
84
+ "@types/markdown-it": "^14.0.0",
85
85
  "ava": "^5.2.0",
86
86
  "c8": "^9.0.0",
87
87
  "np": "*",
@@ -16,7 +16,6 @@ module.exports = async (html, config) => {
16
16
  const expressionsOptions = merge(
17
17
  {
18
18
  loopTags: ['each', 'for'],
19
- missingLocal: '{local}',
20
19
  strictMode: false
21
20
  },
22
21
  get(componentsUserOptions, 'expressions', {}),
@@ -79,9 +79,9 @@ export default interface ExpressionsConfig {
79
79
  /**
80
80
  What to render when referencing a value that is not defined in `locals`.
81
81
 
82
- By default the original expression reference will be output, i.e. `{{ foo }}`.
82
+ By default, the string 'undefined' will be output.
83
83
 
84
- @default '{local}'
84
+ @default undefined
85
85
 
86
86
  @example
87
87