Skip to content

Commit 4cad296

Browse files
Version Packages (#64)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f8f60d9 commit 4cad296

File tree

8 files changed

+54
-37
lines changed

8 files changed

+54
-37
lines changed

.changeset/little-gifts-tickle.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

.changeset/real-plums-wave.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# @manypkg/cli
22

3+
## 0.14.0
4+
5+
### Minor Changes
6+
7+
- [`f8f60d9`](https://github.com/Thinkmill/manypkg/commit/f8f60d9bd968cf2c7bef2a1e7c257398316ee12c) [#67](https://github.com/Thinkmill/manypkg/pull/67) Thanks [@jesstelford](https://github.com/jesstelford)! - Add package.json#manypkg config object:
8+
9+
```
10+
{
11+
"manypkg": {}
12+
}
13+
```
14+
15+
To support setting a default branch for the INCORRECT_REPOSITORY_FIELD check/fix, a new config option can be set:
16+
17+
```
18+
{
19+
"manypkg": {
20+
"defaultBranch": "master"
21+
}
22+
}
23+
```
24+
25+
The default `defaultBranch` is `"master"`.
26+
27+
### Patch Changes
28+
29+
- [`a4db72a`](https://github.com/Thinkmill/manypkg/commit/a4db72a8b272f1b642fa751639d7840f4fa3658c) [#63](https://github.com/Thinkmill/manypkg/pull/63) Thanks [@evocateur](https://github.com/evocateur)! - Add support for Lerna monorepos
30+
31+
- Updated dependencies [[`a4db72a`](https://github.com/Thinkmill/manypkg/commit/a4db72a8b272f1b642fa751639d7840f4fa3658c)]:
32+
- @manypkg/get-packages@1.1.0
33+
334
## 0.13.0
435

536
### Minor Changes

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"url": "https://github.com/Thinkmill/manypkg.git",
66
"directory": "packages/cli"
77
},
8-
"version": "0.13.0",
8+
"version": "0.14.0",
99
"main": "dist/cli.cjs.js",
1010
"module": "dist/cli.esm.js",
1111
"license": "MIT",
@@ -14,7 +14,7 @@
1414
},
1515
"dependencies": {
1616
"@babel/runtime": "^7.5.5",
17-
"@manypkg/get-packages": "^1.0.0",
17+
"@manypkg/get-packages": "^1.1.0",
1818
"chalk": "^2.4.2",
1919
"detect-indent": "^6.0.0",
2020
"find-up": "^4.1.0",

packages/find-root/CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# @manypkg/find-root
22

3-
## 1.0.0
4-
### Major Changes
3+
## 1.1.0
4+
5+
### Minor Changes
56

7+
- [`a4db72a`](https://github.com/Thinkmill/manypkg/commit/a4db72a8b272f1b642fa751639d7840f4fa3658c) [#63](https://github.com/Thinkmill/manypkg/pull/63) Thanks [@evocateur](https://github.com/evocateur)! - Add support for Lerna monorepos
68

9+
## 1.0.0
10+
11+
### Major Changes
712

813
- [`72a0112`](https://github.com/Thinkmill/manypkg/commit/72a01127a5804cc8b881ab1a67e83a6149944ade) [#47](https://github.com/Thinkmill/manypkg/pull/47) Thanks [@tarang9211](https://github.com/tarang9211)! - Initial release of `@manypkg/find-root`

packages/find-root/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@manypkg/find-root",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"main": "dist/find-root.cjs.js",
55
"module": "dist/find-root.esm.js",
66
"license": "MIT",

packages/get-packages/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @manypkg/get-packages
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- [`a4db72a`](https://github.com/Thinkmill/manypkg/commit/a4db72a8b272f1b642fa751639d7840f4fa3658c) [#63](https://github.com/Thinkmill/manypkg/pull/63) Thanks [@evocateur](https://github.com/evocateur)! - Add support for Lerna monorepos
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`a4db72a`](https://github.com/Thinkmill/manypkg/commit/a4db72a8b272f1b642fa751639d7840f4fa3658c)]:
12+
- @manypkg/find-root@1.1.0
13+
314
## 1.0.1
415

516
### Patch Changes

packages/get-packages/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "@manypkg/get-packages",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"main": "dist/get-packages.cjs.js",
55
"dependencies": {
66
"@babel/runtime": "^7.5.5",
7-
"@manypkg/find-root": "^1.0.0",
7+
"@manypkg/find-root": "^1.1.0",
88
"fs-extra": "^8.1.0",
99
"globby": "^11.0.0",
1010
"read-yaml-file": "^1.1.0"

0 commit comments

Comments
 (0)