# HG changeset patch # User Johannes Bornhold # Date 2016-08-30 14:25:18 # Node ID 459a414964f4cec088650885d4bf518f637d2fed # Parent e814be461c6cc9299bfba61fc2c5d75e69e28079 packaging: Exclude bower_components from sources This way we avoid that they will be re-built each time. diff --git a/default.nix b/default.nix --- a/default.nix +++ b/default.nix @@ -41,7 +41,8 @@ let ext = last (splitString "." path); in !elem (basename path) [ - ".git" ".hg" "__pycache__" ".eggs" "node_modules" + ".git" ".hg" "__pycache__" ".eggs" + "bower_components" "node_modules" "build" "data" "tmp"] && !elem ext ["egg-info" "pyc"] && !startsWith "result" path;