update-versions 5.0.10 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/LICENSE +1 -1
- package/README.md +2 -7
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 5.1.0 (2022-04-11)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- export defaults and version ([1107244](https://github.com/codsen/codsen/commit/1107244b45eff96ac1fc4ab992031ede0d10ba8c))
|
|
11
|
+
|
|
6
12
|
## 5.0.4 (2021-11-04)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2010-
|
|
3
|
+
Copyright (c) 2010-2022 Roy Revelt and other contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
6
|
a copy of this software and associated documentation files (the
|
package/README.md
CHANGED
|
@@ -26,19 +26,16 @@
|
|
|
26
26
|
|
|
27
27
|
## Install
|
|
28
28
|
|
|
29
|
-
This package is ESM only: Node 12+ is needed to use it and it must be imported instead of required:
|
|
30
|
-
|
|
31
29
|
```bash
|
|
32
30
|
npm i -g update-versions
|
|
33
31
|
```
|
|
34
32
|
|
|
35
|
-
|
|
36
|
-
|
|
37
33
|
Then, call it from the command line using keyword:
|
|
38
34
|
|
|
39
35
|
```bash
|
|
40
36
|
upd
|
|
41
37
|
```
|
|
38
|
+
|
|
42
39
|
## Documentation
|
|
43
40
|
|
|
44
41
|
Please [visit codsen.com](https://codsen.com/os/update-versions/) for a full description of the API.
|
|
@@ -51,8 +48,6 @@ To report bugs or request features or assistance, [raise an issue](https://githu
|
|
|
51
48
|
|
|
52
49
|
MIT License
|
|
53
50
|
|
|
54
|
-
Copyright (c) 2010-
|
|
55
|
-
|
|
51
|
+
Copyright (c) 2010-2022 Roy Revelt and other contributors
|
|
56
52
|
|
|
57
53
|
<img src="https://codsen.com/images/png-codsen-ok.png" width="98" alt="ok" align="center"> <img src="https://codsen.com/images/png-codsen-1.png" width="148" alt="codsen" align="center"> <img src="https://codsen.com/images/png-codsen-star-small.png" width="32" alt="star" align="center">
|
|
58
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "update-versions",
|
|
3
|
-
"version": "5.0
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "Like npm-check-updates but supports Lerna monorepos and enforces strict semver values",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"letspublish": "yarn publish || :",
|
|
47
47
|
"lint": "eslint . --fix",
|
|
48
48
|
"prepare": "echo 'ready'",
|
|
49
|
+
"prettier:format": "prettier --write '**/*.{js,md}' --no-error-on-unmatched-pattern",
|
|
49
50
|
"test": "c8 yarn run unit && yarn run lint",
|
|
50
51
|
"unit": "uvu test"
|
|
51
52
|
},
|
|
@@ -67,8 +68,8 @@
|
|
|
67
68
|
},
|
|
68
69
|
"dependencies": {
|
|
69
70
|
"ansi-diff-stream": "^1.2.1",
|
|
70
|
-
"edit-package-json": "^0.
|
|
71
|
-
"globby": "^
|
|
71
|
+
"edit-package-json": "^0.6.0",
|
|
72
|
+
"globby": "^13.1.1",
|
|
72
73
|
"is-online": "^9.0.1",
|
|
73
74
|
"lodash.isplainobject": "^4.0.6",
|
|
74
75
|
"log-update": "^5.0.0",
|
|
@@ -77,13 +78,13 @@
|
|
|
77
78
|
"p-map": "^5.3.0",
|
|
78
79
|
"p-progress": "^0.6.0",
|
|
79
80
|
"p-reduce": "^3.0.0",
|
|
80
|
-
"pacote": "^
|
|
81
|
+
"pacote": "^13.1.1",
|
|
81
82
|
"update-notifier": "^5.1.0",
|
|
82
|
-
"write-file-atomic": "^
|
|
83
|
+
"write-file-atomic": "^4.0.1"
|
|
83
84
|
},
|
|
84
85
|
"devDependencies": {
|
|
85
86
|
"@types/lodash.isplainobject": "^4.0.6",
|
|
86
|
-
"fs-extra": "^10.0.
|
|
87
|
+
"fs-extra": "^10.0.1",
|
|
87
88
|
"lodash.clonedeep": "^4.5.0"
|
|
88
89
|
}
|
|
89
90
|
}
|