Skip to content

Commit

Permalink
chore(release): 9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieMason committed Feb 14, 2023
1 parent 2cd34fd commit d127242
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
# [9.0.0](https://github.com/JamieMason/syncpack/compare/8.5.14...9.0.0) (2023-02-14)


### Features

* **custom:** support custom version locations ([2cd34fd](https://github.com/JamieMason/syncpack/commit/2cd34fd1f41e949cedd28b901a123906d8bc5d08)), closes [#112](https://github.com/JamieMason/syncpack/issues/112) [#113](https://github.com/JamieMason/syncpack/issues/113)
* **fix-mismatches:** remove any empty objects ([a279e56](https://github.com/JamieMason/syncpack/commit/a279e56dfaf8ba11bd507a89315b2a5b038b027b))


### BREAKING CHANGES

* **custom:** 1. The following options were replaced in [email protected]:

-p, --prod include dependencies
-d, --dev include devDependencies
-P, --peer include peerDependencies
-R, --resolutions include resolutions (yarn)
-o, --overrides include overrides (npm)
-O, --pnpmOverrides include overrides (pnpm)
-w, --workspace include locally developed package versions

Instead use the new --types option like so:

--types dev,prod,peer

2. In .syncpackrc, the following options were replaced:

"dev": true,
"overrides": true,
"peer": true,
"pnpmOverrides": true,
"prod": true,
"resolutions": true,
"workspace": true,

Instead use the new dependencyTypes array like so:

"dependencyTypes": ["dev", "prod", "peer"]



## [8.5.14](https://github.com/JamieMason/syncpack/compare/8.4.11...8.5.14) (2023-02-07)


Expand Down
3 changes: 2 additions & 1 deletion DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,17 @@ npm test

## Dependencies

- [@mobily/ts-belt](https://ghub.io/@mobily/ts-belt): 🔧 Fast, modern, and practical utility library for FP in TypeScript.
- [chalk](https://ghub.io/chalk): Terminal string styling done right
- [commander](https://ghub.io/commander): the complete solution for node.js command-line programs
- [cosmiconfig](https://ghub.io/cosmiconfig): Find and load configuration from a package.json property, rc file, or CommonJS module
- [expect-more](https://ghub.io/expect-more): Curried JavaScript Type Testing Library with Zero Dependencies
- [fp-ts](https://ghub.io/fp-ts): Functional programming in TypeScript
- [fs-extra](https://ghub.io/fs-extra): fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.
- [glob](https://ghub.io/glob): a little globber
- [minimatch](https://ghub.io/minimatch): a glob matcher in javascript
- [read-yaml-file](https://ghub.io/read-yaml-file): Read and parse a YAML file
- [semver](https://ghub.io/semver): The semantic version parser used by npm.
- [zod](https://ghub.io/zod): TypeScript-first schema declaration and validation library with static type inference

## Dev Dependencies

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "syncpack",
"description": "Manage multiple package.json files, such as in Lerna Monorepos and Yarn/Pnpm Workspaces",
"version": "8.5.14",
"version": "9.0.0",
"author": "Jamie Mason <[email protected]> (https://github.com/JamieMason)",
"bin": {
"syncpack": "dist/bin.js",
Expand Down

0 comments on commit d127242

Please sign in to comment.