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

ghost-storage-adapter-s3-bartt

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ghost-storage-adapter-s3-bartt - npm Package Compare versions

Comparing version 0.1.0-development to 0.1.1-development

.history/package_20210209164301.json

4

index.js

@@ -62,4 +62,4 @@ 'use strict';

this.accessKeyId = accessKeyId;
this.secretAccessKey = secretAccessKey;
this.accessKeyId = process.env.AWS_ACCESS_KEY_ID || accessKeyId;
this.secretAccessKey = process.env.AWS_SECRET_ACCESS_KEY || secretAccessKey;
this.region = process.env.AWS_DEFAULT_REGION || region;

@@ -66,0 +66,0 @@

@@ -73,3 +73,3 @@ {

},
"version": "0.1.0-development"
"version": "0.1.1-development"
}

@@ -31,4 +31,4 @@ import AWS from 'aws-sdk'

// Compatible with the aws-sdk's default environment variables
this.accessKeyId = accessKeyId
this.secretAccessKey = secretAccessKey
this.accessKeyId = process.env.AWS_ACCESS_KEY_ID || accessKeyId
this.secretAccessKey = process.env.AWS_SECRET_ACCESS_KEY || secretAccessKey
this.region = process.env.AWS_DEFAULT_REGION || region

@@ -35,0 +35,0 @@

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