New:Socket for Asana Is Now Available.Learn more
Get Started

greenly

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

greenly - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+9
-4
dist/cli.js

@@ -8,3 +8,3 @@ #!/usr/bin/env node

//#region package.json
var version = "1.0.0";
var version = "1.0.1";
//#endregion

@@ -226,3 +226,7 @@ //#region src/lib/args.ts

cancel("Aborted.");
process.exit(1);
return {
results,
failed: results.filter((r) => r.status === "failed").length,
exitCode: 1
};
}

@@ -317,7 +321,8 @@ shouldFix = answer;

const { exitCode } = await runChecks(config, mode);
process.exit(exitCode);
process.exitCode = exitCode;
} catch (error) {
if (error instanceof ConfigNotFoundError || error instanceof ConfigInvalidError) {
console.error(colors.red(error.message));
process.exit(1);
process.exitCode = 1;
return;
}

@@ -324,0 +329,0 @@ throw error;

{
"name": "greenly",
"version": "1.0.0",
"version": "1.0.1",
"description": "Config-driven project check runner. Define your lint/format/typecheck/test steps in greenly.config.ts and run them with one command.",

@@ -84,3 +84,3 @@ "keywords": [

"oxlint": "1.76.0",
"oxlint-tsgolint": "^7.0.2001",
"oxlint-tsgolint": "7.0.2001",
"tsdown": "0.22.14",

@@ -87,0 +87,0 @@ "typescript": "7.0.2",