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

@lbu/store

Package Overview
Dependencies
Maintainers
2
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lbu/store - npm Package Compare versions

Comparing version 0.0.54 to 0.0.55

4

index.d.ts

@@ -251,7 +251,7 @@ import * as minioVendor from "minio";

*/
getFileSteam(
public getStreamFn: (
file: StoreFileStore,
start?: number,
end?: number,
): Promise<{ stream: NodeJS.ReadStream; cacheControl: string }>;
) => Promise<{ stream: NodeJS.ReadStream; cacheControl: string }>;

@@ -258,0 +258,0 @@ /**

{
"name": "@lbu/store",
"version": "0.0.54",
"version": "0.0.55",
"description": "Postgres & S3-compatible wrappers for common things",

@@ -18,4 +18,4 @@ "main": "./index.js",

"dependencies": {
"@lbu/insight": "0.0.54",
"@lbu/stdlib": "0.0.54",
"@lbu/insight": "0.0.55",
"@lbu/stdlib": "0.0.55",
"@types/minio": "7.0.6",

@@ -47,3 +47,3 @@ "mime-types": "2.1.27",

},
"gitHead": "a02d512f6e50f2718e7a04df5e64ec225b2c11cd"
"gitHead": "2a2f8e2c3d46d542120f8547c3b5fec8075d717c"
}

@@ -1,2 +0,2 @@

import { merge } from "@lbu/stdlib";
import { isProduction, merge } from "@lbu/stdlib";
import minio from "minio";

@@ -14,3 +14,3 @@

secretKey: process.env.MINIO_SECRET_KEY,
useSSL: process.env.NODE_ENV === "production",
useSSL: isProduction(),
};

@@ -17,0 +17,0 @@ return new minio.Client(merge(config, opts));

@@ -1,2 +0,2 @@

import { merge } from "@lbu/stdlib";
import { isProduction, merge } from "@lbu/stdlib";
import postgres from "postgres";

@@ -42,3 +42,3 @@

application_name: process.env.APP_NAME,
ssl: process.env.NODE_ENV === "production",
ssl: isProduction(),
},

@@ -45,0 +45,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