Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 2cd4cdc

Browse files
committed
chokidar allows recursive watching in linux
1 parent beb5cca commit 2cd4cdc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/filesystem/impls/appshell/AppshellFileSystem.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -589,11 +589,11 @@ define(function (require, exports, module) {
589589

590590
/**
591591
* Indicates whether or not recursive watching notifications are supported
592-
* by the watchPath call. Currently, only Darwin supports recursive watching.
592+
* by the watchPath call. With chokidar, every platform supports recursive watching.
593593
*
594594
* @type {boolean}
595595
*/
596-
exports.recursiveWatch = (appshell.platform === "mac" || appshell.platform === "win");
596+
exports.recursiveWatch = true;
597597

598598
/**
599599
* Indicates whether or not the filesystem should expect and normalize UNC

0 commit comments

Comments
 (0)