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

@smallwins/lambda

Package Overview
Dependencies
Maintainers
5
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@smallwins/lambda - npm Package Compare versions

Comparing version 4.3.0 to 4.4.0

2

package.json
{
"name": "@smallwins/lambda",
"version": "4.3.0",
"version": "4.4.0",
"description": "Author your AWS Lambda functions as node style errbacks.",

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

@@ -71,5 +71,13 @@ #!/usr/bin/env node

var dirname = join(__dirname, '..', name)
var zip = join( __dirname, '..', name.replace('/', '') + '.zip')
// helper to remove trailing slash
function strip(str) {
if(str.substr(-1) === '/') {
return str.substr(0, str.length - 1)
}
return str
}
var dirname = join(process.cwd(), name)
var zip = join(process.cwd(), strip(name) + '.zip')
async.waterfall([

@@ -76,0 +84,0 @@ function zipTmp(callback) {

Sorry, the diff of this file is not supported yet

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