diff options
author | 2021-08-21 22:53:25 -0700 | |
---|---|---|
committer | 2021-08-21 22:53:25 -0700 | |
commit | e012efa1243d09fb1de282ac0a1fa6c8b07538a5 (patch) | |
tree | 46a3d71fbfd8abccc650554bbb54dcf1415a9a1c /src/feature_flags.zig | |
parent | 468c22de0e8deff28b4b7f780c640ffe3529343a (diff) | |
download | bun-e012efa1243d09fb1de282ac0a1fa6c8b07538a5.tar.gz bun-e012efa1243d09fb1de282ac0a1fa6c8b07538a5.tar.zst bun-e012efa1243d09fb1de282ac0a1fa6c8b07538a5.zip |
Fix watcher when you move files/dirs around. It'll bust the cache and recreate it (and leak memory)
Former-commit-id: 8faf6127547411c1fdcee9e4e7440825f21ecd99
Diffstat (limited to 'src/feature_flags.zig')
-rw-r--r-- | src/feature_flags.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature_flags.zig b/src/feature_flags.zig index 44d901f14..a773213ef 100644 --- a/src/feature_flags.zig +++ b/src/feature_flags.zig @@ -34,7 +34,7 @@ pub const css_supports_fence = true; pub const enable_entry_cache = true; pub const enable_bytecode_caching = false; -pub const watch_directories = false; +pub const watch_directories = true; // This feature flag exists so when you have defines inside package.json, you can use single quotes in nested strings. pub const allow_json_single_quotes = true; |