From 55b1badfc5e993c4075a8f1d08d84b6ff3acdbab Mon Sep 17 00:00:00 2001 From: Lucas Azzola Date: Thu, 4 Jan 2018 21:20:44 +1100 Subject: [PATCH] Add .cache directory to default ignore This is the cache directory used by https://parceljs.org/ --- lib/listening.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/listening.js b/lib/listening.js index 17ed50a..3412215 100644 --- a/lib/listening.js +++ b/lib/listening.js @@ -75,7 +75,7 @@ module.exports = async (server, inUse, flags, sockets) => { usePolling: flags.poll, ignoreInitial: true, ignored: [ - /\.git|node_modules|\.nyc_output|\.sass-cache|coverage/, + /\.git|node_modules|\.nyc_output|\.sass-cache|coverage|\.cache/, /\.swp$/ ] }