Comparing version 4.0.0 to 4.0.1
@@ -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 @@ |
@@ -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", |
65328
939