🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

handlebars-data

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

handlebars-data - npm Package Compare versions

Comparing version
0.2.0
to
0.2.1
+3
-3
package.json
{
"name": "handlebars-data",
"version": "0.2.0",
"version": "0.2.1",
"description": "Canonical Handlebars for Marketing Cloud Next helper catalog, built-in bindings, and unsupported-construct definitions for SFMC tooling",

@@ -47,5 +47,5 @@ "type": "module",

"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.0.0",
"eslint-plugin-jsdoc": "^63.0.10",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-unicorn": "^64.0.0",
"eslint-plugin-unicorn": "^70.0.0",
"globals": "^17.4.0",

@@ -52,0 +52,0 @@ "husky": "^9.1.7",

@@ -1151,7 +1151,7 @@ /**

/** Lookup of unsupported constructs by astNodeType -> entries sharing that node type. */
export const unsupportedByNodeType = UNSUPPORTED_CONSTRUCTS.reduce((map, entry) => {
const list = map.get(entry.astNodeType) ?? [];
export const unsupportedByNodeType = new Map();
for (const entry of UNSUPPORTED_CONSTRUCTS) {
const list = unsupportedByNodeType.get(entry.astNodeType) ?? [];
list.push(entry);
map.set(entry.astNodeType, list);
return map;
}, new Map());
unsupportedByNodeType.set(entry.astNodeType, list);
}