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

@adonisjs/logger

Package Overview
Dependencies
Maintainers
2
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adonisjs/logger - npm Package Compare versions

Comparing version 5.3.0-0 to 5.4.0-0

4

build/src/targets/create.d.ts

@@ -5,5 +5,5 @@ import type { TransportTargetOptions } from '../types.js';

add(value: TransportTargetOptions): this;
if(conditional: boolean, value: TransportTargetOptions | (() => TransportTargetOptions)): this;
unless(conditional: boolean, value: TransportTargetOptions | (() => TransportTargetOptions)): this;
pushIf(conditional: boolean, value: TransportTargetOptions | (() => TransportTargetOptions)): this;
pushUnless(conditional: boolean, value: TransportTargetOptions | (() => TransportTargetOptions)): this;
toArray(): TransportTargetOptions[];
}

@@ -7,3 +7,3 @@ export class Targets {

}
if(conditional, value) {
pushIf(conditional, value) {
if (conditional) {

@@ -14,3 +14,3 @@ this.#collection.push(typeof value === 'function' ? value() : value);

}
unless(conditional, value) {
pushUnless(conditional, value) {
if (!conditional) {

@@ -17,0 +17,0 @@ this.#collection.push(typeof value === 'function' ? value() : value);

{
"name": "@adonisjs/logger",
"version": "5.3.0-0",
"version": "5.4.0-0",
"description": "Logger built on top of pino to be used by AdonisJs",

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

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