prepares manifest for Lorem Ipsum handlebar helper

This commit is contained in:
mikesealey 2024-07-04 16:56:25 +01:00
parent 457e9235f0
commit 004db2d414
2 changed files with 10 additions and 1 deletions

View File

@ -26,7 +26,7 @@
"manifest": "ts-node ./scripts/gen-collection-info.ts"
},
"dependencies": {
"@budibase/handlebars-helpers": "^0.13.1",
"@budibase/handlebars-helpers": "^0.13.2",
"dayjs": "^1.10.8",
"handlebars": "^4.7.8",
"lodash.clonedeep": "^4.5.0"

View File

@ -907,6 +907,15 @@
"example": "{{uppercase 'aBcDef'}} -> ABCDEF",
"description": "<p>Uppercase all of the characters in the given string. If used as a block helper it will uppercase the entire block. This helper does not support inverse blocks.</p>\n",
"requiresBlock": false
},
"lorem": {
"args": [
"num"
],
"numArgs": 1,
"example": "{{lorem 11}} -> Lorem ipsum",
"description": "<p>Takes a number and returns that many charaters of Lorem Ipsum</p>\n",
"requiresBlock": false
}
},
"comparison": {