@travetto/repo 8.0.0-alpha.21 → 8.0.0-alpha.22
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/README.md +17 -12
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -28,10 +28,11 @@ $ trv repo:version --help
|
|
|
28
28
|
|
|
29
29
|
Usage: repo:version [options] <level:major|minor|patch|premajor|preminor|prepatch|prerelease> [prefix:string]
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
Description:
|
|
32
|
+
Bump workspace module versions and optionally commit/tag release metadata.
|
|
32
33
|
|
|
33
|
-
Supports changed/all/direct module targeting and synchronizes dependency
|
|
34
|
-
versions after the version bump operation completes.
|
|
34
|
+
Supports changed/all/direct module targeting and synchronizes dependency
|
|
35
|
+
versions after the version bump operation completes.
|
|
35
36
|
|
|
36
37
|
Options:
|
|
37
38
|
--mode <all|changed|direct> The mode for versioning
|
|
@@ -70,13 +71,15 @@ $ trv repo:publish --help
|
|
|
70
71
|
|
|
71
72
|
Usage: repo:publish [options]
|
|
72
73
|
|
|
73
|
-
|
|
74
|
+
Description:
|
|
75
|
+
Publish unpublished workspace modules to the package registry.
|
|
74
76
|
|
|
75
|
-
The command performs a publishability scan first, then publishes candidates.
|
|
76
|
-
Dry-run mode is enabled by default.
|
|
77
|
+
The command performs a publishability scan first, then publishes candidates.
|
|
78
|
+
Dry-run mode is enabled by default.
|
|
77
79
|
|
|
78
80
|
Options:
|
|
79
81
|
--dry-run, --no-dry-run Dry Run? (default: true)
|
|
82
|
+
-o, --otp <string> OTP Token
|
|
80
83
|
--help display help for command
|
|
81
84
|
```
|
|
82
85
|
|
|
@@ -101,10 +104,11 @@ $ trv repo:list --help
|
|
|
101
104
|
|
|
102
105
|
Usage: repo:list [options]
|
|
103
106
|
|
|
104
|
-
|
|
107
|
+
Description:
|
|
108
|
+
List workspace modules and their relationships.
|
|
105
109
|
|
|
106
|
-
Output can be emitted as plain list, graphviz digraph, or JSON dependency
|
|
107
|
-
graph suitable for automation.
|
|
110
|
+
Output can be emitted as plain list, graphviz digraph, or JSON dependency
|
|
111
|
+
graph suitable for automation.
|
|
108
112
|
|
|
109
113
|
Options:
|
|
110
114
|
-c, --changed Only show changed modules (default: false)
|
|
@@ -190,10 +194,11 @@ $ trv repo:exec --help
|
|
|
190
194
|
|
|
191
195
|
Usage: repo:exec [options] <cmd:string> [args...:string]
|
|
192
196
|
|
|
193
|
-
|
|
197
|
+
Description:
|
|
198
|
+
Execute a shell command across workspace modules.
|
|
194
199
|
|
|
195
|
-
Supports running for all modules or only changed modules, with optional
|
|
196
|
-
concurrency and output prefixing controls.
|
|
200
|
+
Supports running for all modules or only changed modules, with optional
|
|
201
|
+
concurrency and output prefixing controls.
|
|
197
202
|
|
|
198
203
|
Options:
|
|
199
204
|
-c, --changed Only changed modules (default: false)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/repo",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.22",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Monorepo utilities",
|
|
6
6
|
"keywords": [
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"directory": "module/repo"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@travetto/worker": "^8.0.0-alpha.
|
|
26
|
+
"@travetto/worker": "^8.0.0-alpha.18"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@travetto/cli": "^8.0.0-alpha.
|
|
29
|
+
"@travetto/cli": "^8.0.0-alpha.25"
|
|
30
30
|
},
|
|
31
31
|
"peerDependenciesMeta": {
|
|
32
32
|
"@travetto/cli": {
|