@financial-times/x-handlebars 12.0.2 → 13.0.0
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/index.js +1 -0
- package/package.json +4 -7
package/index.js
CHANGED
|
@@ -47,6 +47,7 @@ module.exports = (userOptions = {}) => {
|
|
|
47
47
|
)
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
+
// eslint-disable-next-line no-invalid-this
|
|
50
51
|
const props = Object.assign({}, this, mixins, hash)
|
|
51
52
|
|
|
52
53
|
// Don't allow implementors to pass in the root context when using Express as the "locals" object may include sensitive data.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@financial-times/x-handlebars",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"description": "This module provides Handlebars helper functions to render `x-dash` component packages or local compatible modules within existing Handlebars templates.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"author": "",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@financial-times/x-engine": "^
|
|
12
|
+
"@financial-times/x-engine": "^13.0.0"
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
@@ -17,15 +17,12 @@
|
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/Financial-Times/x-dash/tree/HEAD/packages/x-handlebars",
|
|
19
19
|
"engines": {
|
|
20
|
-
"node": "16.x",
|
|
21
|
-
"npm": "7.x || 8.x"
|
|
20
|
+
"node": "16.x || 18.x",
|
|
21
|
+
"npm": "7.x || 8.x || 9.x"
|
|
22
22
|
},
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"preinstall": "[ \"$INIT_CWD\" != \"$PWD\" ] || npm_config_yes=true npx check-engine"
|
|
28
|
-
},
|
|
29
26
|
"volta": {
|
|
30
27
|
"extends": "../../package.json"
|
|
31
28
|
},
|