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

@gandi/counterpart

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gandi/counterpart - npm Package Versions

1.1.1

Diff

pascalduez
published 1.1.0 •

Changelog

Source

[1.1.0] - 2024-09-09

Fixed

  • Add engines key to package.json to forbid Node.js versions prior to 22.1.0. We now rely on CustomEvent which was made stable and available from that version.
pascalduez
published 1.0.0 •

Changelog

Source

[1.0.0] - 2024-09-06

Changed

  • Remove usage of Node core lib util module (#1).
  • Remove usage of except helper package (#1).
  • BREAKING Replace usage of Node EventEmitter with native EventTarget (#1). This make the package able to run server of client side without requiring polyfills. This change the signature of event listener callbacks. They now receive a single CustomEvent object as argument, instead of unlimited parameters. So for instance:
    // Before
    instance.onLocaleChange((locale, previous) => {})
    
    // After
    instance.onLocaleChange((event) => {
      // event.detail.locale
      // event.detail.previous
    })
    
gandi
published 1.0.0-beta.1 •

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