@travetto/manifest 3.1.2 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -125,7 +125,7 @@ export type WatchFolder = {
|
|
|
125
125
|
includeHidden?: boolean;
|
|
126
126
|
};
|
|
127
127
|
|
|
128
|
-
export type WatchStream = AsyncIterable<WatchEvent> & { close: () => Promise<void
|
|
128
|
+
export type WatchStream = AsyncIterable<WatchEvent> & { close: () => Promise<void>, add: (item: WatchEvent | WatchEvent[]) => void };
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
This method allows for watching one or more folders, and registering a callback that will fire every time a file changes, and which of the registered folders it was triggered within. The return of the `watchFolders` is a cleanup method, that when invoked will remove and stop all watching behavior.
|