Skip to content

Commit 58e48d6

Browse files
committed
fixed issue where watcher would only watch the base the dir
1 parent c4123f4 commit 58e48d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/watch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const path = require('path');
55
const location = path.join(__dirname, '../src');
66
const destination = path.join(location, '../example/react-native-markdown-renderer');
77

8-
const watcher = chokidar.watch(location);
8+
const watcher = chokidar.watch(location + '/**/*');
99
watcher.on('change', dir => {
1010

1111

0 commit comments

Comments
 (0)