Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

awsass

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

awsass - npm Package Compare versions

Comparing version 0.0.15 to 0.0.16

2

package.json
{
"name": "awsass",
"description": "AWSASS is an assistant to AWS, mostly for running better scripts.",
"version": "0.0.15",
"version": "0.0.16",
"author": "Jsonize",

@@ -6,0 +6,0 @@ "repository": "https://github.com/jsonize/awsass",

@@ -514,2 +514,12 @@ const AWS = require("aws-sdk");

let smallestVersionId = resourcesResponse.items.find(item => item.path === smallestVersion.proxyKey);
let parent = undefined;
let childCount = 0;
resourcesResponse.items.forEach(item => {
if (item.id === smallestVersionId.parentId)
parent = item;
if (item.parentId === smallestVersionId.parentId)
childCount++;
});
if (parent && childCount === 1)
smallestVersionId = parent;
if (smallestVersionId) {

@@ -516,0 +526,0 @@ console.log("Removing smallest version", smallestVersion, smallestVersionId);

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