node-file-entry-cache 5.0.1+~2.0.1+~2.0.0+~1.0.0+~2.0.1-5build2 source package in Ubuntu

Changelog

node-file-entry-cache (5.0.1+~2.0.1+~2.0.0+~1.0.0+~2.0.1-5build2) focal; urgency=medium

  * No change rebuild against new eslint

 -- Gianfranco Costamagna <email address hidden>  Wed, 08 Apr 2020 00:46:59 +0200

Upload details

Uploaded by:
Gianfranco Costamagna
Uploaded to:
Focal
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-file-entry-cache_5.0.1+~2.0.1+~2.0.0+~1.0.0+~2.0.1.orig-Xadd.tar.gz 12.9 KiB 2bcf147704f62f1ebf3e22a41d50a8f5b49b39151219efc3973984f604c2ee65
node-file-entry-cache_5.0.1+~2.0.1+~2.0.0+~1.0.0+~2.0.1.orig-Xflat.tar.gz 55.8 KiB 55a36452b45954a2a2f13f5cd381021d189b648984e09b14e2f9b1d75767eb93
node-file-entry-cache_5.0.1+~2.0.1+~2.0.0+~1.0.0+~2.0.1.orig-Xstrip.tar.gz 9.1 KiB da74569a4701fb8808c8b896032da5251c8fb3ac617e3ff7f37e8874add301c7
node-file-entry-cache_5.0.1+~2.0.1+~2.0.0+~1.0.0+~2.0.1.orig-Xwrite.tar.gz 8.4 KiB e67f1b6a68c6c50685b0f85fbec361560621a533f7a777635854bde9dbc58837
node-file-entry-cache_5.0.1+~2.0.1+~2.0.0+~1.0.0+~2.0.1.orig.tar.gz 52.7 KiB 2080851def388bc2d39873cc737f622ca78b239ddecac15f11e46d82910418ce
node-file-entry-cache_5.0.1+~2.0.1+~2.0.0+~1.0.0+~2.0.1-5build2.debian.tar.xz 6.7 KiB f041d777c771f1482c788099566fe63ff0c30aeb355c30de87d2b146f1e311b6
node-file-entry-cache_5.0.1+~2.0.1+~2.0.0+~1.0.0+~2.0.1-5build2.dsc 4.0 KiB d91d412d9622b26d5401ba1cc167905ed557fe823b65e679a3f00c2e6d28532a

View changes file

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.