Remove too new packages from npm response

This commit is contained in:
Sander Declerck 2025-11-12 13:39:17 +01:00
parent 3bf7279195
commit 8bd2ace3db
No known key found for this signature in database
9 changed files with 582 additions and 119 deletions

View file

@ -1,5 +1,9 @@
import * as cliArguments from "./cliArguments.js";
export const LOGGING_SILENT = "silent";
export const LOGGING_NORMAL = "normal";
export const LOGGING_VERBOSE = "verbose";
export function getLoggingLevel() {
const level = cliArguments.getLoggingLevel();
@ -14,9 +18,6 @@ export function getLoggingLevel() {
return LOGGING_NORMAL;
}
export const MALWARE_ACTION_BLOCK = "block";
export const MALWARE_ACTION_PROMPT = "prompt";
export const ECOSYSTEM_JS = "js";
export const ECOSYSTEM_PY = "py";
@ -36,6 +37,6 @@ export function setEcoSystem(setting) {
ecosystemSettings.ecoSystem = setting;
}
export const LOGGING_SILENT = "silent";
export const LOGGING_NORMAL = "normal";
export const LOGGING_VERBOSE = "verbose";
export function getMinimumPackageAgeHours() {
return 24 * 6;
}