@travetto/repo 5.0.0-rc.9 → 5.0.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/README.md +7 -7
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -104,20 +104,18 @@ Options:
|
|
|
104
104
|
```bash
|
|
105
105
|
$ trv repo:list
|
|
106
106
|
|
|
107
|
-
global-test/asset-rest-upload
|
|
108
107
|
global-test/auth-rest
|
|
109
108
|
global-test/auth-rest-jwt
|
|
110
|
-
global-test/model_asset
|
|
111
109
|
global-test/model_auth-model
|
|
112
110
|
global-test/model_cache
|
|
113
111
|
global-test/model_rest-session
|
|
112
|
+
global-test/model_rest-upload
|
|
114
113
|
global-test/openapi
|
|
115
114
|
global-test/pack_app
|
|
116
115
|
global-test/rest-client
|
|
117
116
|
global-test/rest-session
|
|
118
117
|
global-test/rest-upload
|
|
119
118
|
global-test/transformer-test
|
|
120
|
-
module/asset
|
|
121
119
|
module/auth
|
|
122
120
|
module/auth-model
|
|
123
121
|
module/auth-rest
|
|
@@ -144,7 +142,9 @@ module/manifest
|
|
|
144
142
|
module/model
|
|
145
143
|
module/model-dynamodb
|
|
146
144
|
module/model-elasticsearch
|
|
145
|
+
module/model-file
|
|
147
146
|
module/model-firestore
|
|
147
|
+
module/model-memory
|
|
148
148
|
module/model-mongo
|
|
149
149
|
module/model-mysql
|
|
150
150
|
module/model-postgres
|
|
@@ -205,20 +205,18 @@ The standard format includes prefixed output to help identify which module produ
|
|
|
205
205
|
```bash
|
|
206
206
|
$ trv repo:exec -w 1 pwd
|
|
207
207
|
|
|
208
|
-
global-test/
|
|
209
|
-
global-test/auth-rest <workspace-root>/global-test/auth-rest
|
|
208
|
+
global-test/auth-rest <workspace-root>/global-test/auth-rest
|
|
210
209
|
global-test/auth-rest-jwt <workspace-root>/global-test/auth-rest-jwt
|
|
211
|
-
global-test/model_asset <workspace-root>/global-test/model_asset
|
|
212
210
|
global-test/model_auth-model <workspace-root>/global-test/model_auth-model
|
|
213
211
|
global-test/model_cache <workspace-root>/global-test/model_cache
|
|
214
212
|
global-test/model_rest-session <workspace-root>/global-test/model_rest-session
|
|
213
|
+
global-test/model_rest-upload <workspace-root>/global-test/model_rest-upload
|
|
215
214
|
global-test/openapi <workspace-root>/global-test/openapi
|
|
216
215
|
global-test/pack_app <workspace-root>/global-test/pack_app
|
|
217
216
|
global-test/rest-client <workspace-root>/global-test/rest-client
|
|
218
217
|
global-test/rest-session <workspace-root>/global-test/rest-session
|
|
219
218
|
global-test/rest-upload <workspace-root>/global-test/rest-upload
|
|
220
219
|
global-test/transformer-test <workspace-root>/global-test/transformer-test
|
|
221
|
-
module/asset <workspace-root>/module/asset
|
|
222
220
|
module/auth <workspace-root>/module/auth
|
|
223
221
|
module/auth-model <workspace-root>/module/auth-model
|
|
224
222
|
module/auth-rest <workspace-root>/module/auth-rest
|
|
@@ -245,7 +243,9 @@ global-test/model_rest-session <workspace-root>/global-test/model_rest-session
|
|
|
245
243
|
module/model <workspace-root>/module/model
|
|
246
244
|
module/model-dynamodb <workspace-root>/module/model-dynamodb
|
|
247
245
|
module/model-elasticsearch <workspace-root>/module/model-elasticsearch
|
|
246
|
+
module/model-file <workspace-root>/module/model-file
|
|
248
247
|
module/model-firestore <workspace-root>/module/model-firestore
|
|
248
|
+
module/model-memory <workspace-root>/module/model-memory
|
|
249
249
|
module/model-mongo <workspace-root>/module/model-mongo
|
|
250
250
|
module/model-mysql <workspace-root>/module/model-mysql
|
|
251
251
|
module/model-postgres <workspace-root>/module/model-postgres
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/repo",
|
|
3
|
-
"version": "5.0.0
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Monorepo utilities",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"travetto",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"directory": "module/repo"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@travetto/cli": "^5.0.0
|
|
26
|
-
"@travetto/worker": "^5.0.0
|
|
25
|
+
"@travetto/cli": "^5.0.0",
|
|
26
|
+
"@travetto/worker": "^5.0.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependenciesMeta": {
|
|
29
29
|
"@travetto/cli": {
|