node-depd 2.0.0-1 source package in Ubuntu

Changelog

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

  * Team Upload.
  * New upstream version 2.0.0
  * Switch to pkg-js-tools (Closes: #952341)
  * Remove un-needed patch
  * Add upstream/metadata
  * Drop compat, switch to debhelper-compat
  * Add "Rules-Requires-Root:no"
  * Bump standards version to 4.5.0

 -- Nilesh Patra <email address hidden>  Mon, 24 Feb 2020 16:20:39 +0530

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
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-depd_2.0.0-1.dsc 2.0 KiB e730c04b24333a391240d560b48f688a51b2dbd7c61d6a18e28e9b51a3b88aa0
node-depd_2.0.0.orig.tar.gz 18.2 KiB 165bf0d97508cabad3c313d5099b00e2a6f71710198b26f32c369106b274bd32
node-depd_2.0.0-1.debian.tar.xz 2.8 KiB 24bcc1a4b0e6b106e8ff2dfbd56bf72231a9a6033af111b7361ac52be35eb7c0

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.