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

symply

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

symply - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

2

package.json
{
"name": "symply",
"version": "0.0.7",
"version": "0.0.8",
"description": "A dead-simple Bootstrap static site generator.",

@@ -5,0 +5,0 @@ "author": "Oleg Legun <oleg.legun@gmail.com>",

@@ -83,2 +83,6 @@ const fs = require('fs')

function templateHelper(templateName, data) {
if (!templates[templateName]) {
logger.error(`Template '${templateName}' is not found in directory '${configuration.TEMPLATES_DIR_NAME}/'.`)
process.exit(1)
}
return templates[templateName].replace('{{}}', data.fn(this))

@@ -198,4 +202,2 @@ }

return function(...args) {
console.log(args)
const passedArgs = args.slice(0, args.length - 1)

@@ -202,0 +204,0 @@ const data = args[args.length - 1]

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