1.0.2 • Published 11 months ago

sync-content v1.0.2

Weekly downloads
-
License
BlueOak-1.0.0
Repository
github
Last release
11 months ago

sync-content

Synchronize the contents of one folder to another location, only copying files if contents differ.

USAGE

import { syncContent, syncContentSync } from 'sync-content'

// promise version will generally be faster, because parallel
await syncContent('/some/source/path', '/some/destination/path')

// or sync version:
syncContentSync('/some/source/path', '/some/destination/path')

// now they match!
// Any files that already had matching contents were skipped.
// Anything absent in the source was removed.
// Anything that was the wrong type of entry was clobbered.
1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago