folder-diff
v0.0.2
Published
Create patch file for two folders, usable for example as a patch for mercurial repo
Readme
#folder-diff
Create unified diff patch file for two folders, usable for creating patches for using in mercurial or git even on folders which are not actually version controlled.
Internally uses diff package.
Installation
npm install folder-diffAPI
fdiff.folderPatch('output.patch', originalSourceDir, modifiedSourceDir, { ignore : ['*.html'], prefix : "a/src/proj/" });
Test
npm test