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.4.0 to 0.4.1

5

CHANGELOG.md
# Changelog
## [0.4.1]
- Fix additional bump types to be a no-op bump.
- [15431f0](https://www.github.com/jbolda/covector/commit/15431f0661a30c8cb336194e39709147bfbd1aea) fix: additional bump type is no-op ([#149](https://www.github.com/jbolda/covector/pull/149)) on 2021-02-22
## [0.4.0]

@@ -4,0 +9,0 @@

8

index.js

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

["patch", 3],
["noop", 4],
]);

@@ -83,5 +84,8 @@ return bumps.get(bumpOne) < bumps.get(bumpTwo) ? bumpOne : bumpTwo;

if (bumpOptions.includes(change.releases[pkg])) {
const bumpType = additionalBumpTypes.includes(change.releases[pkg])
? "noop"
: change.releases[pkg];
if (!release[pkg]) {
release[pkg] = {
type: change.releases[pkg],
type: bumpType,
changes: cloneDeep([change]),

@@ -91,3 +95,3 @@ };

release[pkg] = {
type: compareBumps(release[pkg].type, change.releases[pkg]),
type: compareBumps(release[pkg].type, bumpType),
changes: cloneDeep([...release[pkg].changes, change]),

@@ -94,0 +98,0 @@ };

{
"name": "@covector/assemble",
"version": "0.4.0",
"version": "0.4.1",
"license": "Apache-2.0",

@@ -9,4 +9,4 @@ "files": [

"dependencies": {
"@covector/command": "0.1.0",
"@covector/files": "0.2.0",
"@covector/command": "0.2.0",
"@covector/files": "0.2.1",
"lodash.clonedeep": "^4.5.0",

@@ -13,0 +13,0 @@ "lodash.template": "^4.5.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