grepmax 0.17.13 → 0.17.14
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.
|
@@ -59,6 +59,11 @@ exports.DEFAULT_IGNORE_PATTERNS = [
|
|
|
59
59
|
"*.designer.cs", // C# designer
|
|
60
60
|
"*.generated.ts",
|
|
61
61
|
"*.generated.tsx", // graphql-codegen / common TS
|
|
62
|
+
// graphql-codegen client-preset output dir (emits no @generated banner, so
|
|
63
|
+
// the header sniff can't catch these — match the canonical filenames).
|
|
64
|
+
"**/gql/graphql.ts",
|
|
65
|
+
"**/gql/gql.ts",
|
|
66
|
+
"**/gql/fragment-masking.ts",
|
|
62
67
|
// Test fixtures and benchmark data
|
|
63
68
|
"**/fixtures/**",
|
|
64
69
|
"**/benchmark/**",
|
package/package.json
CHANGED