1
Fork 0
cheap-watch/CHANGELOG.md

48 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2021-09-06 22:08:50 +00:00
# v1.0.4
- Fix ESM build by using named `EventEmitter` export
2020-11-18 16:51:45 +00:00
# v1.0.3
- Fix published types
2018-11-13 12:18:37 +00:00
# v1.0.2
- Include TypeScript declaration file (`.d.ts`)
2018-10-23 17:04:16 +00:00
# v1.0.1
- Make sure we manually emit an event for a directory when one of its direct children is updated
2018-10-11 13:10:48 +00:00
# v1.0.0
- Internal rewrite in TypeScript
- Git tag is now the built version, for easier direct installation without the npm registry
2018-04-04 01:56:08 +00:00
# v0.3.0
- Rename `.files` to `.paths`, as it contains directories, not just files
- Include an additional `isNew` boolean in `+` events, indicating whether this is a new or an updated file/directory
- No longer call the `filter` function on the root watched directory
- No longer include the root watched directory under the `''` in the `Map`, nor emit `+` events for it
2018-04-03 21:12:53 +00:00
# v0.2.2
- Rollup was erroneously added as a dependency and is now a dev dependency as it should be
2018-04-03 12:34:52 +00:00
# v0.2.1
- Add some more type checking
- Ignore `error` events from `FSWatcher`, as Windows seems to like emitting these sometimes
2018-04-02 23:50:36 +00:00
# v0.2.0
- Report directory stats and events
- Expose latest stats for all files and directories as `watch.files`
- Expose pre-deletion stats for deleted files and directories as part of `-` event
- `watch.init()` simply returns a `Promise` resolving to `undefined` now that `watch.files` is available
# v0.1.0
- Initial release