node-ignore 5.2.0-3 source package in Ubuntu

Changelog

node-ignore (5.2.0-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + node-ignore: Add :any qualifier for nodejs dependency.

 -- Jelmer Vernooij <email address hidden>  Mon, 21 Nov 2022 10:09:11 +0000

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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-ignore_5.2.0-3.dsc 2.1 KiB e6e36ca18dd2d39b67118402ad3635285981a0c341e3fe3cb661b51663307bb2
node-ignore_5.2.0.orig.tar.gz 20.2 KiB e2019ce66ad9f81b605ee408630948b5dcbb2d0f307f57118d8b0277a156e0a1
node-ignore_5.2.0-3.debian.tar.xz 4.2 KiB 76da68bbf7722096b65935cd81c9eb59d87201277e084d23a9a3ce346282483c

Available diffs

No changes file available.

Binary packages built by this source

node-ignore: manager and filter for .gitignore rules - Node.js library

 "ignore" is a manager, filter and parser
 for the .gitignore spec at <https://git-scm.com/docs/gitignore>,
 implemented in pure JavaScript.
 .
  * Standalone module, much simpler than e.g. "fstream-ignore".
  * Only contains utility methods
    to filter paths according to the specified ignore rules.
  * Never tries to discover ignore rules
    by traversing directories or fetching from git configurations.
  * Doesn't care about sub-modules of git projects.
  * Complies exactly to gitignore documentation
    at <https://git-scm.com/docs/gitignore>:
    - "/*.js" should only match "a.js", not also "abc/a.js".
    - "**/foo" should match "foo" anywhere.
    - Prevents re-including a file excluded in a parent directory.
    - Handles trailing whitespaces:
      - "a " (one space) should not match "a " (two spaces).
      - "a \ " matches "a ".
    - All test cases are verified against "git check-ignore".