New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@commitguard/cli

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@commitguard/cli - npm Package Compare versions

Comparing version
0.0.16
to
0.0.17
+7
-2
dist/index.mjs

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

//#region package.json
var version = "0.0.16";
var version = "0.0.17";
var package_default = {

@@ -947,3 +947,8 @@ name: "@commitguard/cli",

} catch (error) {
consola.error("Analysis failed:", error);
const message = error instanceof Error ? error.message : String(error);
if (process.stdout.isTTY) consola.box({
title: "Analysis Failed",
message
});
else consola.log(message);
}

@@ -950,0 +955,0 @@ }

{
"name": "@commitguard/cli",
"type": "module",
"version": "0.0.16",
"version": "0.0.17",
"description": "AI-powered git commit checker that blocks bad code before it ships",

@@ -24,12 +24,2 @@ "license": "MIT",

],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "pnpm typecheck && bumpp --tag --push --publish && npm publish"
},
"dependencies": {

@@ -56,3 +46,12 @@ "@clack/prompts": "^0.11.0",

"vitest": "^4.0.16"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "pnpm typecheck && bumpp --tag --push --publish && npm publish"
}
}
}