Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@maggioli-rd/sr-codeowners-plugin

Package Overview
Dependencies
Maintainers
2
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@maggioli-rd/sr-codeowners-plugin - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## [1.0.4](https://gitlab.com/maggiolispa/ricerca-sviluppo/semantic-release-shareable-configurations/sr-codeowners-plugin/compare/v1.0.3...v1.0.4) (2024-01-05)
### Bug Fixes
* add execa cmd args as array string ([1036cd7](https://gitlab.com/maggiolispa/ricerca-sviluppo/semantic-release-shareable-configurations/sr-codeowners-plugin/commit/1036cd75e89e2fd5c19177429fe5b2cd3d618670))
## [1.0.3](https://gitlab.com/maggiolispa/ricerca-sviluppo/semantic-release-shareable-configurations/sr-codeowners-plugin/compare/v1.0.2...v1.0.3) (2024-1-5)

@@ -2,0 +9,0 @@

6

dist/verifyConditions.js

@@ -9,7 +9,7 @@ import SemanticReleaseError from "@semantic-release/error";

}
await verifyCommand("which git touch sed grep head");
await verifyCommand("which", ["git", "touch", "sed", "grep", "head"]);
};
const verifyCommand = async (command) => {
const verifyCommand = async (command, args) => {
try {
await execa(command);
await execa(command, args);
}

@@ -16,0 +16,0 @@ catch (error) {

@@ -26,7 +26,7 @@ import SemanticReleaseError from "@semantic-release/error";

logger.log("Running cmd: " + cmd);
await verifyCommand(cmd);
await verifyCommand("bash", ["-c", cmd]);
};
const verifyCommand = async (command) => {
const verifyCommand = async (command, args) => {
try {
await execa(command);
await execa(command, args);
}

@@ -33,0 +33,0 @@ catch (error) {

{
"name": "@maggioli-rd/sr-codeowners-plugin",
"version": "1.0.3",
"version": "1.0.4",
"description": "Maggioli Semantic Release Plugin: Codeowners",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc