node-ignore 5.1.9-1 source package in Ubuntu

Changelog

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

  [ upstream ]
  * new release

  [ Jonas Smedegaard ]
  * build-depend on recent babeljs (not babel7)
  * fix build-depend on nodejs:any

 -- Jonas Smedegaard <email address hidden>  Tue, 09 Nov 2021 13:26:29 +0100

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.9-1.dsc 2.1 KiB 7c4ea3137534fad543cea48a97fe42837fca01a2297881bb108602a2d1aaea73
node-ignore_5.1.9.orig.tar.gz 19.8 KiB 861d767f89dc5f3050d2cf55ceeb04e5ff5a9000d5f7efd52b858d650efcad3b
node-ignore_5.1.9-1.debian.tar.xz 4.0 KiB ef66e21a964f31d5e716a4fef50a681af8120acc4c6c5b8d1cdb612c6badbb23

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