Skip to content

Commit fd7ef19

Browse files
committed
chore(release): 6.0.0
1 parent 787757c commit fd7ef19

3 files changed

Lines changed: 40 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
# [6.0.0](https://github.com/JamieMason/syncpack/compare/5.8.15...6.0.0) (2022-01-01)
2+
3+
4+
### Bug Fixes
5+
6+
* **npm:** update dependencies ([fdef0a2](https://github.com/JamieMason/syncpack/commit/fdef0a202340e4287bf8f7e6ae27953002c5b4ee))
7+
8+
9+
### Features
10+
11+
* **core:** add glob support and semver range rule groups ([787757c](https://github.com/JamieMason/syncpack/commit/787757c4b09163ec12a60b190954811c0cf4f15f))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **core:** Dependencies defined within the `resolutions` and `overrides` fields are
17+
now processed by syncpack and are enabled by default. To exclude these
18+
new fields you will need to define only the fields you do want to
19+
process, either in your configuration file:
20+
21+
```json
22+
{
23+
"dev": true,
24+
"peer": true,
25+
"prod": true
26+
}
27+
```
28+
29+
or via the command line:
30+
31+
```
32+
syncpack list --dev --peer --prod
33+
```
34+
35+
36+
137
## [5.8.15](https://github.com/JamieMason/syncpack/compare/5.8.14...5.8.15) (2021-08-08)
238

339

DEPENDENCIES.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ npm test
2828
- [commander](https://ghub.io/commander): the complete solution for node.js command-line programs
2929
- [cosmiconfig](https://ghub.io/cosmiconfig): Find and load configuration from a package.json property, rc file, or CommonJS module
3030
- [expect-more](https://ghub.io/expect-more): Curried JavaScript Type Testing Library with Zero Dependencies
31+
- [fp-ts](https://ghub.io/fp-ts): Functional programming in TypeScript
3132
- [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.
3233
- [glob](https://ghub.io/glob): a little globber
34+
- [minimatch](https://ghub.io/minimatch): a glob matcher in javascript
3335
- [read-yaml-file](https://ghub.io/read-yaml-file): Read and parse a YAML file
3436
- [semver](https://ghub.io/semver): The semantic version parser used by npm.
3537

@@ -38,16 +40,14 @@ npm test
3840
- [@types/fs-extra](https://ghub.io/@types/fs-extra): TypeScript definitions for fs-extra
3941
- [@types/glob](https://ghub.io/@types/glob): TypeScript definitions for Glob
4042
- [@types/jest](https://ghub.io/@types/jest): TypeScript definitions for Jest
41-
- [@types/mock-fs](https://ghub.io/@types/mock-fs): TypeScript definitions for mock-fs
4243
- [@types/node](https://ghub.io/@types/node): TypeScript definitions for Node.js
4344
- [@types/semver](https://ghub.io/@types/semver): TypeScript definitions for semver
4445
- [@typescript-eslint/eslint-plugin](https://ghub.io/@typescript-eslint/eslint-plugin): TypeScript plugin for ESLint
4546
- [@typescript-eslint/parser](https://ghub.io/@typescript-eslint/parser): An ESLint custom parser which leverages TypeScript ESTree
4647
- [eslint](https://ghub.io/eslint): An AST-based pattern checker for JavaScript.
48+
- [eslint-plugin-import](https://ghub.io/eslint-plugin-import): Import with sanity.
4749
- [expect-more-jest](https://ghub.io/expect-more-jest): Write Beautiful Specs with Custom Matchers for Jest
4850
- [jest](https://ghub.io/jest): Delightful JavaScript Testing.
49-
- [mock-fs](https://ghub.io/mock-fs): A configurable mock file system. You know, for testing.
50-
- [organize-imports-cli](https://ghub.io/organize-imports-cli): VS Code's 'Organize imports' executable from command line
5151
- [prettier](https://ghub.io/prettier): Prettier is an opinionated code formatter
5252
- [rimraf](https://ghub.io/rimraf): A deep deletion module for node (like `rm -rf`)
5353
- [ts-jest](https://ghub.io/ts-jest): A Jest transformer with source map support that lets you use Jest to test projects written in TypeScript

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "syncpack",
33
"description": "Manage multiple package.json files, such as in Lerna Monorepos and Yarn/Pnpm Workspaces",
4-
"version": "5.8.15",
4+
"version": "6.0.0",
55
"author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
66
"bin": {
77
"syncpack": "dist/bin.js",

0 commit comments

Comments
 (0)