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

@clipmx/lambda-utils

Package Overview
Dependencies
Maintainers
6
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clipmx/lambda-utils - npm Package Compare versions

Comparing version 0.5.1 to 0.5.2

4

dist/core/logger/index.js

@@ -44,4 +44,4 @@ "use strict";

level: typeof level === 'string' ? level : Logger.LEVELS_MAPPING[level],
format: winston.format.combine(winston.format.colorize(), winston.format.splat(), // Allows string formating, i.e. logger.debug('%s %d %j', 'text', 10, {s:'text', i: 10})
winston.format.printf(log => `[${log.level}]: ${log.message}`)),
format: winston.format.combine(winston.format.timestamp(), winston.format.splat(), // Allows string formating, i.e. logger.debug('%s %d %j', 'text', 10, {s:'text', i: 10})
winston.format.printf(log => `${log.timestamp} [${log.level.toUpperCase()}]: ${log.message}`)),
transports: [new winston.transports.Console()],

@@ -48,0 +48,0 @@ });

{
"name": "@clipmx/lambda-utils",
"version": "0.5.1",
"version": "0.5.2",
"description": "Common helpers for Node Lambdas",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -72,5 +72,5 @@ import * as winston from 'winston';

format: winston.format.combine(
winston.format.colorize(),
winston.format.timestamp(),
winston.format.splat(), // Allows string formating, i.e. logger.debug('%s %d %j', 'text', 10, {s:'text', i: 10})
winston.format.printf(log => `[${log.level}]: ${log.message}`),
winston.format.printf(log => `${log.timestamp} [${log.level.toUpperCase()}]: ${log.message}`),
),

@@ -77,0 +77,0 @@ transports: [new winston.transports.Console()],

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