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.1.1
to
1.1.2
+1
-1
dist/cli.js

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

var name = "greenly";
var version = "1.1.1";
var version = "1.1.2";
//#endregion

@@ -14,0 +14,0 @@ //#region src/lib/args.ts

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

@@ -5,0 +5,0 @@ "keywords": [

<h1>
<img src="https://raw.githubusercontent.com/yusifaliyevpro/greenly/main/assets/greenly.svg" alt="" height="34" align="top" />
<img src="https://raw.githubusercontent.com/yusifaliyevpro/greenly/main/assets/greenly.svg" alt="" height="34" align="center" />
greenly

@@ -115,2 +115,11 @@ </h1>

## Examples in the wild
Real `greenly.config.ts` files that mix the usual checks with project-specific ones:
- [**vscode-icons**](https://github.com/yusifaliyevpro/vscode-icons/blob/main/greenly.config.ts) - adds custom "Sorted Icons" (auto-fixed), "Icon Integrity", and "Version Check" steps, so the icon set and version bump are validated by the same command as everything else instead of a separate script nobody remembers to run.
- [**countries**](https://github.com/yusifaliyevpro/countries/blob/main/greenly.config.ts) - alongside typecheck / format / lint / test / build, a custom "Sorted data" check keeps the country dataset in order and auto-sorts it on failure, so a misordered entry can never slip into a PR.
- [**Azerbaijan GitHub Community / blog**](https://github.com/azerbaijan-git-community/blog/blob/main/greenly.config.ts) - a custom "Validate Posts" check runs on every contribution, so a malformed blog post is caught automatically instead of during review.
- [**Azerbaijan GitHub Community / showcase**](https://github.com/azerbaijan-git-community/showcase/blob/main/greenly.config.ts) - a custom "Validate projects" check verifies each submitted showcase entry, so contributor PRs are checked the same way locally and in CI.
## Config reference

@@ -182,4 +191,10 @@

## Demo
Here is `pnpm check` running greenly on a real project ([**vscode-icons**](https://github.com/yusifaliyevpro/vscode-icons/blob/main/greenly.config.ts)):
![greenly running pnpm check](https://raw.githubusercontent.com/yusifaliyevpro/greenly/main/assets/greenly-run.gif)
## License
MIT © [Yusif Aliyev](https://yusifaliyevpro.com)