New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

syncpack

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

syncpack - npm Package Compare versions

Comparing version 4.0.0 to 4.0.1

8

CHANGELOG.md

@@ -0,1 +1,9 @@

## [4.0.1](https://github.com/JamieMason/syncpack/compare/4.0.0...4.0.1) (2019-01-14)
### Bug Fixes
- **ci:** cannot read property concat of undefined
([46a45e2](https://github.com/JamieMason/syncpack/commit/46a45e2)), closes
[#16](https://github.com/JamieMason/syncpack/issues/16)
# [4.0.0](https://github.com/JamieMason/syncpack/compare/3.5.2...4.0.0) (2019-01-11)

@@ -2,0 +10,0 @@

2

dist/lib/collect.d.ts

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

export declare const collect: (value: string, values: string[]) => string[];
export declare const collect: (value: string, values?: string[]) => string[];
"use strict";
exports.__esModule = true;
exports.collect = function (value, values) { return values.concat([value]); };
exports.collect = function (value, values) {
if (values === void 0) { values = []; }
return values.concat([
value
]);
};
{
"name": "syncpack",
"description": "Manage multiple package.json files, such as in Lerna Monorepos",
"version": "4.0.0",
"version": "4.0.1",
"author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",

@@ -36,3 +36,3 @@ "bin": {

"@types/semver": "5.5.0",
"expect-more-jest": "2.3.0",
"expect-more-jest": "2.4.0",
"jest": "23.6.0",

@@ -39,0 +39,0 @@ "mock-fs": "4.7.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