ember-introjs
Version:
An Ember Component for intro.js
21 lines (13 loc) • 677 B
Markdown
A module for repeated efficient synchronizing two directories.
```js
// input/a/{a.js,b.js}
// output/
var tree = new TreeSync('input', 'output')
tree.sync();
// output is now contains copies of everything that is in input
fs.unlink('/input/a/b/js');
// input / output have diverged
tree.sync();
// difference is calculated and efficient patch to update `output` is created and applied
```