nizel-kit 0.1.1 → 0.1.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/dist/nizel-kit.iife.js +2 -0
- package/dist/nizel-kit.js +2 -0
- package/package.json +1 -1
package/dist/nizel-kit.iife.js
CHANGED
|
@@ -4643,6 +4643,7 @@ ${body}
|
|
|
4643
4643
|
...resolved.meta
|
|
4644
4644
|
};
|
|
4645
4645
|
let data = {
|
|
4646
|
+
...meta,
|
|
4646
4647
|
...resolved.data ?? {},
|
|
4647
4648
|
meta,
|
|
4648
4649
|
frontmatter: extracted.frontmatter
|
|
@@ -4650,6 +4651,7 @@ ${body}
|
|
|
4650
4651
|
if (resolved.template !== false) {
|
|
4651
4652
|
meta = renderObjectTemplates(meta, data, resolved.template);
|
|
4652
4653
|
data = {
|
|
4654
|
+
...meta,
|
|
4653
4655
|
...resolved.data ?? {},
|
|
4654
4656
|
meta,
|
|
4655
4657
|
frontmatter: meta
|
package/dist/nizel-kit.js
CHANGED
|
@@ -4611,6 +4611,7 @@ function createNizel(options = {}) {
|
|
|
4611
4611
|
...resolved.meta
|
|
4612
4612
|
};
|
|
4613
4613
|
let data = {
|
|
4614
|
+
...meta,
|
|
4614
4615
|
...resolved.data ?? {},
|
|
4615
4616
|
meta,
|
|
4616
4617
|
frontmatter: extracted.frontmatter
|
|
@@ -4618,6 +4619,7 @@ function createNizel(options = {}) {
|
|
|
4618
4619
|
if (resolved.template !== false) {
|
|
4619
4620
|
meta = renderObjectTemplates(meta, data, resolved.template);
|
|
4620
4621
|
data = {
|
|
4622
|
+
...meta,
|
|
4621
4623
|
...resolved.data ?? {},
|
|
4622
4624
|
meta,
|
|
4623
4625
|
frontmatter: meta
|