node-ignore 5.1.8-1 source package in Ubuntu

Changelog

node-ignore (5.1.8-1) unstable; urgency=medium

  [ upstream ]
  * new release(s)

  [ Jonas Smedegaard ]
  * simplify source helper script copyright-check
  * use debhelper compatibility level 13 (not 12)
  * declare compliance with Debian Policy 4.6.0
  * update copyright info:
    + use Reference field (not License-Reference);
      tighten lintian overrides
    + update coverage

 -- Jonas Smedegaard <email address hidden>  Sat, 09 Oct 2021 15:15:52 +0200

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

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-ignore_5.1.8-1.dsc 2.0 KiB 6cf9b75cdf8934b1cff595316db6ba503fae49cea72a8779e48b564cc36c3f34
node-ignore_5.1.8.orig.tar.gz 19.5 KiB 918d02909c6ab7bfc573dcede964ce4275c448027b82d0e11989f73618b0bd14
node-ignore_5.1.8-1.debian.tar.xz 4.0 KiB 211ee5db04ce6616f521ce1c8e520f2640f3d53effcd6c1d73084cd25850eaad

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".