@runsec/mcp 1.0.82 → 1.0.83
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.
- package/bin/runsec-mcp.cjs +1 -1
- package/dist/index.js +5 -10
- package/package.json +1 -1
package/bin/runsec-mcp.cjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -2576,16 +2576,11 @@ var import_promises = __toESM(require("fs/promises"));
|
|
|
2576
2576
|
var import_node_os = __toESM(require("os"));
|
|
2577
2577
|
var import_node_path11 = __toESM(require("path"));
|
|
2578
2578
|
var TRUFFLEHOG_EXCLUDE_PATTERNS = [
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
"**/Cargo.lock",
|
|
2585
|
-
"**/composer.lock",
|
|
2586
|
-
"**/Gemfile.lock",
|
|
2587
|
-
"**/*-lock.json",
|
|
2588
|
-
"**/node_modules/**"
|
|
2579
|
+
String.raw`\.lock$`,
|
|
2580
|
+
String.raw`package-lock\.json$`,
|
|
2581
|
+
String.raw`pnpm-lock\.yaml$`,
|
|
2582
|
+
String.raw`-lock\.json$`,
|
|
2583
|
+
String.raw`(^|[\\/])node_modules([\\/]|$)`
|
|
2589
2584
|
];
|
|
2590
2585
|
async function createTrufflehogExcludeFile() {
|
|
2591
2586
|
const tmpDir = await import_promises.default.mkdtemp(import_node_path11.default.join(import_node_os.default.tmpdir(), "runsec-th-exclude-"));
|