node-d3-dispatch 1.0.6-2 source package in Ubuntu

Changelog

node-d3-dispatch (1.0.6-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Submit.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright).
  * Apply multi-arch hints. + node-d3-dispatch: Add Multi-Arch: foreign.

  [ Pirate Praveen ]
  * Use node-rollup-plugin-terser (now available in the archive)
  * Bump Standards-Version to 4.5.1 (no changes needed)
  * Enable nocheck build profile

 -- Pirate Praveen <email address hidden>  Tue, 15 Dec 2020 14:32:29 +0530

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-d3-dispatch_1.0.6-2.dsc 2.1 KiB b6ef2d95fc0e73dfe0cccf1d974d8e13cefdfc58aa404769fa469c339f1a45b8
node-d3-dispatch_1.0.6.orig.tar.gz 25.9 KiB 907591839e4175db8e6ac64e323bc1d9d7d4ff36a6d9bb4068caa6b5a50c796e
node-d3-dispatch_1.0.6-2.debian.tar.xz 3.5 KiB 26535291155040654caa320d7e7ffc3f4de8e6a87c2c82552f9c052d7af65267

Available diffs

No changes file available.

Binary packages built by this source

node-d3-dispatch: Register named callbacks and call them with arguments

 Dispatching is a convenient mechanism for separating concerns with
 loosely-coupled code: register named callbacks and then call them with
 arbitrary arguments. A variety of D3 components, such as d3-request, use this
 mechanism to emit events to listeners. Think of this like Node’s EventEmitter,
 except every listener has a well-defined name so it’s easy to remove or
 replace them.
 .
 Node.js is an event-based server-side JavaScript engine.