node-file-entry-cache 6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 source package in Ubuntu

Changelog

node-file-entry-cache (6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5) unstable; urgency=medium

  [ Debian Janitor ]
  * Set upstream metadata fields: Repository-Browse.
  * Update lintian override info format in d/source/lintian-overrides on line
    2-3.
  * Set upstream metadata fields: Repository.

 -- Jelmer Vernooij <email address hidden>  Thu, 01 Dec 2022 09:57:38 +0000

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
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-file-entry-cache_6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5.dsc 4.0 KiB 388b463daf84f2d7f41c9465163706e9c9cdc0e0c55624f9c42a98654d012bd2
node-file-entry-cache_6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1.orig-Xadd.tar.gz 12.9 KiB 2bcf147704f62f1ebf3e22a41d50a8f5b49b39151219efc3973984f604c2ee65
node-file-entry-cache_6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1.orig-Xflat.tar.gz 35.8 KiB aca0fcdd61c01a0aa437eb08ac40c7040da4a2a634d116be0347e69498d0c7bf
node-file-entry-cache_6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1.orig-Xstrip.tar.gz 9.1 KiB da74569a4701fb8808c8b896032da5251c8fb3ac617e3ff7f37e8874add301c7
node-file-entry-cache_6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1.orig-Xwrite.tar.gz 8.4 KiB e67f1b6a68c6c50685b0f85fbec361560621a533f7a777635854bde9dbc58837
node-file-entry-cache_6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1.orig.tar.gz 38.5 KiB 261885f222d5e18c9e78341fc987f4613b51a79c53000e2a7f94c8e24e3575a7
node-file-entry-cache_6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5.debian.tar.xz 7.2 KiB d18f9fa600d58c90880121f1813d60ee14be88cf6f1f3fcc5b8788c8a2f5cc79

No changes file available.

Binary packages built by this source

node-file-entry-cache: Node.js library implementing a simple cache for file metadata

 File-entry-cache is a super simple cache for file metadata,
 useful for process that work on a given series of files
 and that only need to repeat the job on the changed ones
 since the previous run of the process.
 .
 The module grew from a need for a super simple and dumb in-memory cache
 with optional disk persistence
 for a script to beautify files with "esformatter"
 only processing files that had changed since last run.
 Such use case need "fileSize" and "modificationTime" of the files
 tracked in a simple key/value storage.

node-flat-cache: Node.js library implementing a simple persistent key/value storage

 Flat-cache is a stupidly simple key/value storage
 using files to persist the data.
 .
 The module grew from a need for a super simple and dumb in-memory cache
 with optional disk persistence
 for a script to beautify files with "esformatter"
 only processing files that had changed since last run.
 Such use case need "fileSize" and "modificationTime" of the files
 tracked in a simple key/value storage.

node-write: convenience wrapper for Node.js fs methods

 Write data to a file,
 replacing the file if it already exists
 and creating any intermediate directories if they don't already exist.
 Thin wrapper around node's native fs methods.