1.9 KiB
1.9 KiB
fs-capacitor changelog
1.0.0
- Initial release.
1.0.1
- Use default fs flags and mode
2.0.0
- Updated dependencies.
- Add tests for special stream scenarios.
- BREAKING: Remove special handling of terminating events, see jaydenseric/graphql-upload#131
2.0.1
- Updated dependencies.
- Move configs out of package.json
- Use
wxfile flag instead of defaultw(thanks to @mattbretl via #8)
2.0.2
- Updated dev dependencies.
- Fix mjs structure to work with node v12.
- Fix a bug that would pause consumption of read streams until completion. (thanks to @Nikosmonaut's investigation in #9).
2.0.3
- Emit write event after bytes have been written to the filesystem.
2.0.4
- Revert support for Node.js v12
--experimental-modulesmode that was published in v2.0.2 that broke compatibility with earlier Node.js versions and test both ESM and CJS builds (skipping--experimental-modulestests for Node.js v12), via #11. - Use package
browserslistfield instead of configuring@babel/preset-envdirectly. - Configure
@babel/preset-envto use shipped proposals and loose mode. - Give dev tool config files
.jsonextensions so they can be Prettier linted. - Don't Prettier ignore the
libdirectory; it's meant to be pretty. - Prettier ignore
package.jsonandpackage-lock.jsonso npm can own the formatting. - Configure
eslint-plugin-nodeto resolve.mjsbefore.jsand other extensions, for compatibility with the pre Node.js v12--experimental-modulesbehavior. - Don't ESLint ignore
node_modules, as it's already ignored by default. - Use the
classicTAP reporter for tests as it has more compact output.