node-ignore 5.1.4-2 source package in Ubuntu

Changelog

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

  * Fix stop bogusly build-depend on help2man.
  * Fix install path.
  * Add (superficial) autopkgtest.
  * Fix typo in TODO file.

 -- Jonas Smedegaard <email address hidden>  Thu, 17 Oct 2019 21:28:04 +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

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-ignore_5.1.4-2.dsc 2.1 KiB 4b9242560f583eedd6db94bbeeb37b9a69e181db56c2defa37905c80f44da687
node-ignore_5.1.4.orig.tar.gz 18.4 KiB 0dae54cf0efbfee815b9058406321e588c79082efc709f0fa29d75a42b837ba8
node-ignore_5.1.4-2.debian.tar.xz 3.9 KiB a242a7af2217068d4402525d93b4ec3f435bed7633beee12f69283ecd519c077

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