node-ignore 5.1.4-3 source package in Ubuntu

Changelog

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

  * fix clean generated docs
  * update TODOs

 -- Jonas Smedegaard <email address hidden>  Sat, 30 Nov 2019 11:12:57 +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
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-ignore_5.1.4-3.dsc 2.1 KiB d3c3b47385c9d78c72719660ce930fe745a58239cb31c87fb28e9a31beafe9b7
node-ignore_5.1.4.orig.tar.gz 18.4 KiB 0dae54cf0efbfee815b9058406321e588c79082efc709f0fa29d75a42b837ba8
node-ignore_5.1.4-3.debian.tar.xz 3.9 KiB 86f7e3d8422186075d1cd49480c3c767c6c2cbcc27e2d2a5e99b90424f2ae0e2

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