We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bce9ba commit 8d721d1Copy full SHA for 8d721d1
ext-sentry/Ext/Filewatch.hs
@@ -49,7 +49,8 @@ watch root action =
49
not (List.isInfixOf ".git" filepath)
50
&& not (List.isInfixOf "elm-stuff" filepath)
51
&& not (List.isInfixOf "node_modules" filepath)
52
- && not (List.isInfixOf "data" filepath)
+ -- This is really dumb of you because some people use `/data/...` as a folder...
53
+ -- && not (List.isInfixOf "data" filepath)
54
&& not (List.isInfixOf "elm-pkg-js-includes.min.js" filepath)
55
56
Ext.Common.debug $ "👀 file event " ++ show e ++ " with shouldRefresh:" ++ show shouldRefresh
0 commit comments