Socket
Socket
Sign inDemoInstall

serverless-plugin-include-dependencies

Package Overview
Dependencies
148
Maintainers
3
Versions
30
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.2.0 to 3.2.1

9

get-dependency-list.js

@@ -46,3 +46,10 @@ 'use strict';

}
throw new Error(`[serverless-plugin-include-dependencies]: Could not find ${moduleName}`);
try {
// this resolves the requested import also against any set up NODE_PATH extensions, etc.
const resolved = require.resolve(name);
localFilesToProcess.push(resolved);
return;
} catch(e) {
throw new Error(`[serverless-plugin-include-dependencies]: Could not find ${moduleName}`);
}
}

@@ -49,0 +56,0 @@ throw e;

8

package.json
{
"name": "serverless-plugin-include-dependencies",
"version": "3.2.0",
"version": "3.2.1",
"engines": {

@@ -20,6 +20,5 @@ "node": ">=4.0"

"scripts": {
"test": "nyc --all ava",
"test": "NODE_PATH=\"__tests__/fixtures/additional_node_path:${NODE_PATH:-}\" nyc --all ava",
"posttest": "eslint .",
"preversion": "update contributors",
"prepublish": "git push origin master; git push origin --tags"
"preversion": "update contributors"
},

@@ -57,2 +56,3 @@ "devDependencies": {

"Nicole Simone (https://github.com/nsimone)",
"Joscha Feth (http://www.feth.com)",
"DIALLO Mamadou Bobo (https://github.com/ecstasy2)",

@@ -59,0 +59,0 @@ "Rick (https://github.com/RickvdP)",

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