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

@dynacom/weave

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dynacom/weave - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

11

classes/engine.js

@@ -36,7 +36,8 @@ const path = require( 'path' );

} else {
fs.readdirSync( argument )
.forEach( fileName => {
let templateName = path.basename( fileName, path.extname( fileName ) );
this.Templates[ templateName ] = new Template( path.resolve( argument, fileName ), { "Engine": this } );
} );
let templatePath = path.resolve( argument, fileName );
if ( fs.statSync( templatePath )
.isFile() ) {
let templateName = path.basename( fileName, path.extname( fileName ) );
this.Templates[ templateName ] = new Template( templatePath, { "Engine": this } );
}
}

@@ -43,0 +44,0 @@ } )

{
"name": "@dynacom/weave"
, "version": "0.1.4"
, "version": "0.1.5"
, "description": "HTML/Javascript templating framework"

@@ -5,0 +5,0 @@ , "main": "index.js"

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