grepmax 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -14,25 +14,27 @@ exports.DEFAULT_IGNORE_PATTERNS = [
|
|
|
14
14
|
"*.log",
|
|
15
15
|
"*.csv",
|
|
16
16
|
// Safety nets for nested non-git folders
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
17
|
+
// Use bare names so the `ignore` library matches the directory itself
|
|
18
|
+
// (prevents descending into it), not just files inside it.
|
|
19
|
+
"node_modules",
|
|
20
|
+
"dist",
|
|
21
|
+
"build",
|
|
22
|
+
"out",
|
|
23
|
+
"target",
|
|
24
|
+
"__pycache__",
|
|
25
|
+
"coverage",
|
|
26
|
+
"venv",
|
|
27
|
+
".venv",
|
|
28
|
+
".tox",
|
|
29
|
+
".mypy_cache",
|
|
30
|
+
".pytest_cache",
|
|
31
|
+
".next",
|
|
32
|
+
".nuxt",
|
|
33
|
+
".gradle",
|
|
34
|
+
".m2",
|
|
35
|
+
"vendor",
|
|
36
|
+
".osgrep",
|
|
37
|
+
".gmax",
|
|
36
38
|
// Minified/generated assets
|
|
37
39
|
"*.min.js",
|
|
38
40
|
"*.min.css",
|
package/package.json
CHANGED