node-ignore 5.1.4-5 source package in Ubuntu

Changelog

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

  * use babel7 presets;
    build-depend on node-babel7
    (not node-babel-cli node-babel-preset-env);
    closes: bug#960017, thanks to Pirate Praveen

 -- Jonas Smedegaard <email address hidden>  Sat, 09 May 2020 08:41:29 +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

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-ignore_5.1.4-5.dsc 2.0 KiB 29fb9a66ae09d382273748605bc8b5ae25c180709e1c5b776bb26d531c083056
node-ignore_5.1.4.orig.tar.gz 18.4 KiB 0dae54cf0efbfee815b9058406321e588c79082efc709f0fa29d75a42b837ba8
node-ignore_5.1.4-5.debian.tar.xz 4.0 KiB afc91c747c391b077b57753eaf4ae772fe5db1e4e58220766ff05a74a7e291a0

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