Comparing version 0.1.97 to 0.1.98
@@ -181,4 +181,4 @@ "use strict"; | ||
return { | ||
"version": "0.1.97", | ||
"commit": "62f6a77506149cdde911c5d0617069e279ffc072" | ||
"version": "0.1.98", | ||
"commit": "845ba3f4064c7c760f2a24040a1c63e34f3356d3" | ||
}; | ||
@@ -185,0 +185,0 @@ } |
@@ -18,4 +18,4 @@ "use strict"; | ||
this.VersionConfiguration = { | ||
VERSION: "0.1.97", | ||
COMMIT: "62f6a77506149cdde911c5d0617069e279ffc072" | ||
VERSION: "0.1.98", | ||
COMMIT: "845ba3f4064c7c760f2a24040a1c63e34f3356d3" | ||
}; | ||
@@ -22,0 +22,0 @@ this.ControllerAddress = { |
{ | ||
"name": "rookout", | ||
"commit": "62f6a77506149cdde911c5d0617069e279ffc072", | ||
"version": "0.1.97", | ||
"commit": "845ba3f4064c7c760f2a24040a1c63e34f3356d3", | ||
"version": "0.1.98", | ||
"description": "Rook is a package for on the fly debugging and data extraction for applications in production", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
@@ -9,2 +9,4 @@ "use strict"; | ||
var _utils = require("../utils"); | ||
function isBlackListedModule(filename) { | ||
@@ -21,2 +23,12 @@ if (filename.startsWith('native ')) { | ||
let whitelistedModules = process.env.ROOKOUT_WHITELIST_MODULES; | ||
if (whitelistedModules !== undefined) { | ||
for (let whitelistedModule of whitelistedModules.replace(/['"]/g, '').split(';')) { | ||
if (whitelistedModule === match[1]) { | ||
return false; | ||
} | ||
} | ||
} | ||
if (ignoredNodeModules.has(match[1])) { | ||
@@ -23,0 +35,0 @@ return true; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2304108
20298
33