Socket
Socket
Sign inDemoInstall

express-handlebars

Package Overview
Dependencies
18
Maintainers
3
Versions
54
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.0.2 to 6.0.3

8

CHANGELOG.md

@@ -0,1 +1,9 @@

## [6.0.3](https://github.com/express-handlebars/express-handlebars/compare/v6.0.2...v6.0.3) (2022-03-03)
### Bug Fixes
* allow false for defaultLayout ([#303](https://github.com/express-handlebars/express-handlebars/issues/303)) ([d6180fe](https://github.com/express-handlebars/express-handlebars/commit/d6180fe7ad8ab74e60f58b4ced1b6d6af2d68c42))
* **deps:** update dependency graceful-fs to ^4.2.9 ([#271](https://github.com/express-handlebars/express-handlebars/issues/271)) ([ea0f1f5](https://github.com/express-handlebars/express-handlebars/commit/ea0f1f563488d67202d7d6067116a4fe67eddf18))
## [6.0.2](https://github.com/express-handlebars/express-handlebars/compare/v6.0.1...v6.0.2) (2021-11-25)

@@ -2,0 +10,0 @@

26

package.json
{
"name": "express-handlebars",
"description": "A Handlebars view engine for Express which doesn't suck.",
"version": "6.0.2",
"version": "6.0.3",
"homepage": "https://github.com/express-handlebars/express-handlebars",

@@ -24,7 +24,7 @@ "keywords": [

"engines": {
"node": ">=v12.22.7"
"node": ">=v12.22.9"
},
"dependencies": {
"glob": "^7.2.0",
"graceful-fs": "^4.2.8",
"graceful-fs": "^4.2.9",
"handlebars": "^4.7.7"

@@ -41,17 +41,17 @@ },

"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"jest-cli": "^27.3.1",
"semantic-release": "^18.0.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
"eslint-plugin-promise": "^5.2.0",
"jest-cli": "^27.5.1",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},

@@ -58,0 +58,0 @@ "release": {

@@ -207,3 +207,3 @@ Express Handlebars

Handlebars ships with some [built-in helpers][], such as: `with`, `if`, `each`, etc. Most application will need to extend this set of helpers to include app-specific logic and transformations. Beyond defining global helpers on `Handlebars`, this view engine supports `ExpressHandlebars` instance-level helpers via the `helpers` configuration property, and render-level helpers via `options.helpers` when calling the `render()` and `renderView()` methods.
Handlebars ships with some [built-in helpers][], such as: `with`, `if`, `each`, etc. Most applications will need to extend this set of helpers to include app-specific logic and transformations. Beyond defining global helpers on `Handlebars`, this view engine supports `ExpressHandlebars` instance-level helpers via the `helpers` configuration property, and render-level helpers via `options.helpers` when calling the `render()` and `renderView()` methods.

@@ -210,0 +210,0 @@ The following example shows helpers being specified at each level:

@@ -78,3 +78,3 @@ /// <reference types="handlebars" />

partialsDir?: string|string[]|PartialsDirObject|PartialsDirObject[];
defaultLayout?: string;
defaultLayout?: string|false;
helpers?: UnknownObject;

@@ -81,0 +81,0 @@ compilerOptions?: CompileOptions;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc