- #50 Adding prepublishOnly script
- #47 Remove unused dependencies and update remaining to latest
- #46 Add basic linting setup
- #45 Refactors to simplify the FS proxy implementation
- #44 Fix typo in workflow configuration
- #41 Migrate to GitHub Actions
- #40 Ensure all of dist/ is published to npm
- #39 Ensure yarn.lock is checked in
- changed interface for fs proxy from
FSMergerFileOperations
toFS
- This is a breaking change to migrate from 1.0.0 to 2.0.0.
readDirSync
is nowreaddirSync
aligning withfs
function.- Now you can perform all the
fs
operation other thanwrite operation
with object created from FSMerger. Below the example usage.
const FSMerger = require('fs-merger');
let fsMerger = new FSMerger([`test`,`bin`]);
fsMerger.fs.readFileSync(`unit-test.js`);
fsMerger.fs.existSync(`unit-test.js`);