New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

seng-generator

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seng-generator - npm Package Compare versions

Comparing version 0.6.0 to 0.7.0

3

package.json
{
"name": "seng-generator",
"version": "0.6.0",
"version": "0.7.0",
"description": "A CLI generator to create code based on templates",

@@ -42,2 +42,3 @@ "preferGlobal": true,

"handlebars": "^4.0.6",
"handlebars-helpers": "^0.9.2",
"inquirer": "^3.0.5",

@@ -44,0 +45,0 @@ "istextorbinary": "^2.1.0",

@@ -55,3 +55,3 @@ # seng generator

you can use all the [handlebars features](http://handlebarsjs.com/) like conditional statements and
loops.
loops. You can also use all the helpers from [handlebars helpers](https://github.com/helpers/handlebars-helpers).

@@ -58,0 +58,0 @@ The variables should be declared in the `.senggenerator` file in the root of the specific template folder in an array

@@ -13,2 +13,3 @@ const path = require('path');

const _ = require('lodash');
const handleBarsHelpers = require('handlebars-helpers')();

@@ -101,2 +102,3 @@ module.exports = function generate(type, options, settings) {

const metadata = metalsmith.metadata();
metadata.helpers = handleBarsHelpers;

@@ -103,0 +105,0 @@ async.each(keys, run, done);

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc