Skip to content

Commit 00a3045

Browse files
committed
release 0.7.1
1 parent 4cac915 commit 00a3045

File tree

2 files changed

+51
-1
lines changed

2 files changed

+51
-1
lines changed

Changelog.md

+50
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,50 @@
11
# Changelog
22

3+
## 0.7.1
4+
5+
* Don't normalize events for Windows or it might lose essential events.
6+
* Fix the functionality of the `.close()` method before watcher is ready.
7+
8+
9+
<br> <br>
10+
11+
312
## 0.7.0
413

514
* Add an extra flag for skipping sub-directories inside filter function.
615

16+
<br> <br>
17+
18+
719
## 0.6.4
820

921
* Fix `ERR_FEATURE_UNAVAILABLE_ON_PLATFORM` error for Node v14.
1022

23+
<br> <br>
24+
25+
1126
## 0.6.3
1227

1328
* Types: Allow watching multiple files.
1429

30+
<br> <br>
31+
32+
1533
## 0.6.2
1634

1735
* Detect temporary editor files more wisely in order to avoid side effects on Windows.
1836

37+
<br> <br>
38+
39+
1940
## 0.6.1
2041

2142
* Add TypeScript support.
2243
* Fix race condition of `fs.exists` and `fs.stat`.
2344
* Prevent redundant events on Windows when creating file/directory.
2445

46+
<br> <br>
47+
2548

2649
## 0.6.0
2750
Special thanks to [Timo Tijhof](https://github.com/Krinkle)
@@ -30,34 +53,61 @@ Special thanks to [Timo Tijhof](https://github.com/Krinkle)
3053
* Add `ready` event for the watcher.
3154
* Lots of bug fixed.
3255

56+
<br> <br>
57+
58+
3359
## 0.5.9
3460
* Fix function detection.
3561
* Emit `close` event after calling `.close()`.
3662
* Don't emit any events after close.
3763
* Change default `delay` to 200ms.
3864

65+
<br> <br>
66+
67+
3968
## 0.5.8
4069
* Fix async function detection.
4170

71+
<br> <br>
72+
73+
4274
## 0.5.7
4375
* Add `delay` option and set default to 100ms.
4476

77+
<br> <br>
78+
79+
4580
## 0.5.6
4681
* Fix recursive watch with filter option.
4782

83+
<br> <br>
84+
85+
4886
## 0.5.5
4987
* Remove duplicate events from a composed watcher.
5088

89+
<br> <br>
90+
91+
5192
## 0.5.4
5293
* Accept Buffer filename.
5394
* Add support for `encoding` option.
5495

96+
<br> <br>
97+
98+
5599
## 0.5.3
56100
* The `filter` option can be of either Function or RegExp type.
57101

102+
<br> <br>
103+
104+
58105
## 0.5.0
59106
* The `recursive` option is default to be `false`.
60107
* The callback function will always provide an event name.
61108

109+
<br> <br>
110+
111+
62112
## 0.4.0
63113
* Returns a [fs.FSWatcher](https://nodejs.org/api/fs.html#fs_class_fs_fswatcher) like object.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"watch",
1212
"watchfile"
1313
],
14-
"version": "0.7.0",
14+
"version": "0.7.1",
1515
"bugs": {
1616
"url": "https://github.com/yuanchuan/node-watch/issues"
1717
},

0 commit comments

Comments
 (0)