Socket
Socket
Sign inDemoInstall

@covector/assemble

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@covector/assemble - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

7

CHANGELOG.md
# Changelog
## [0.2.5]
- Deep clone changes that are getting passed into the changelog. We were editing references and those edits were showing up in erroneous places.
- [38fba3c](https://www.github.com/jbolda/covector/commit/38fba3c6791154f335dde10740cde6ad556b6ef3) fix: deepclone change entries to prevent referencial edits ([#109](https://www.github.com/jbolda/covector/pull/109)) on 2020-07-17
- Allow running commands from the cwd within the config.
- [b95249e](https://www.github.com/jbolda/covector/commit/b95249e88fb9fba1b1cc85c4a8fefa633ca9fd1c) feat: allow command to run from cwd ([#108](https://www.github.com/jbolda/covector/pull/108)) on 2020-07-17
## [0.2.4]

@@ -4,0 +11,0 @@

9

index.js

@@ -7,2 +7,3 @@ const unified = require("unified");

const template = require("lodash.template");
const cloneDeep = require("lodash.clonedeep");
const { readPkgFile } = require("@covector/files");

@@ -85,3 +86,3 @@ const { runCommand } = require("@covector/command");

type: change.releases[pkg],
changes: [change],
changes: cloneDeep([change]),
};

@@ -91,3 +92,3 @@ } else {

type: compareBumps(release[pkg].type, change.releases[pkg]),
changes: [...release[pkg].changes, change],
changes: cloneDeep([...release[pkg].changes, change]),
};

@@ -259,3 +260,3 @@ }

pipeToTemplate,
["command", "dryRunCommand"]
["command", "dryRunCommand", "runFromRoot"]
),

@@ -269,3 +270,3 @@ command: templateCommands(pkgCommands[pkg].command, pipeToTemplate, [

pipeToTemplate,
["command", "dryRunCommand"]
["command", "dryRunCommand", "runFromRoot"]
),

@@ -272,0 +273,0 @@ };

{
"name": "@covector/assemble",
"version": "0.2.4",
"version": "0.2.5",
"license": "Apache-2.0",

@@ -9,2 +9,3 @@ "files": [

"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.template": "^4.5.0",

@@ -11,0 +12,0 @@ "remark-frontmatter": "^2.0.0",

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