Socket
Socket
Sign inDemoInstall

@changesets/logger

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@changesets/logger

Console log alias


Version published
Weekly downloads
829K
decreased by-9%
Maintainers
2
Weekly downloads
 
Created

What is @changesets/logger?

@changesets/logger is a logging utility designed to be used with the Changesets tool. It provides a simple and consistent way to log messages, warnings, and errors during the process of managing versioning and changelogs for a monorepo or multi-package repository.

What are @changesets/logger's main functionalities?

Logging Info Messages

This feature allows you to log informational messages. The `info` function is used to log messages that are meant to inform the user about the current state or progress of a process.

const { info } = require('@changesets/logger');
info('This is an info message');

Logging Warning Messages

This feature allows you to log warning messages. The `warn` function is used to log messages that indicate a potential issue or something that the user should be cautious about.

const { warn } = require('@changesets/logger');
warn('This is a warning message');

Logging Error Messages

This feature allows you to log error messages. The `error` function is used to log messages that indicate a failure or critical issue that needs immediate attention.

const { error } = require('@changesets/logger');
error('This is an error message');

Logging Success Messages

This feature allows you to log success messages. The `success` function is used to log messages that indicate a successful operation or completion of a task.

const { success } = require('@changesets/logger');
success('This is a success message');

Other packages similar to @changesets/logger

FAQs

Package last updated on 31 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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