node-depd 2.0.0-2 source package in Ubuntu

Changelog

node-depd (2.0.0-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Remove MIA uploader Andrew Kelley <email address hidden>. Closes: #909870

  [ Yadd ]
  * Bump debhelper compatibility level to 13
  * Update standards version to 4.6.0, no changes needed.
  * Modernize debian/watch
    * Fix GitHub tags regex
    * Use dh-sequence-nodejs
    * Fix filenamemangle
  * Drop dependency to nodejs
  * Add myself to uploaders list

 -- Yadd <email address hidden>  Tue, 09 Nov 2021 16:36:31 +0100

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-depd_2.0.0-2.dsc 2.0 KiB 4dd18621e10f14c525623806d28da6a5e31741a49ce71bebe612a9c58dd3c6fd
node-depd_2.0.0.orig.tar.gz 18.2 KiB 165bf0d97508cabad3c313d5099b00e2a6f71710198b26f32c369106b274bd32
node-depd_2.0.0-2.debian.tar.xz 3.0 KiB 5679ce360c245025a05da807dcd09fca20f1ffcdaffc050d1846f246210b60b8

Available diffs

No changes file available.

Binary packages built by this source

node-depd: mark a function or property as deprecated - Node.js module

 This module goes above and beyond with deprecation warnings by introspecting
 the call stack (but only the bits that it is interested in).
 .
 Instead of just warning on the first invocation of a deprecated function and
 never again, this module will warn on the first invocation of a deprecated
 function per unique call site, making it ideal to alert users of all
 deprecated uses across the code base, rather than just whatever happens to
 execute first.
 .
 The deprecation warnings from this module also include the file and line
 information for the call into the module that the deprecated function was in.
 .
 Node.js is an event-based server-side JavaScript engine.