@memberjunction/cli 5.9.0 → 5.10.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/oclif.manifest.json +162 -162
- package/package.json +13 -13
package/oclif.manifest.json
CHANGED
|
@@ -22,6 +22,110 @@
|
|
|
22
22
|
"index.js"
|
|
23
23
|
]
|
|
24
24
|
},
|
|
25
|
+
"bump": {
|
|
26
|
+
"aliases": [],
|
|
27
|
+
"args": {},
|
|
28
|
+
"description": "Bumps MemberJunction dependency versions",
|
|
29
|
+
"examples": [
|
|
30
|
+
{
|
|
31
|
+
"command": "<%= config.bin %> <%= command.id %>",
|
|
32
|
+
"description": "Bump all @memberjunction/* dependencies in the current directory's package.json to the CLI version"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"command": "<%= config.bin %> <%= command.id %> -rdv",
|
|
36
|
+
"description": "Preview all recursive packages bumps without writing any changes."
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"command": "<%= config.bin %> <%= command.id %> -rqt v2.10.0 | xargs -n1 -I{} npm install --prefix {}",
|
|
40
|
+
"description": "Recursively bump all @memberjunction/* dependencies in all packages to version v2.10.0 and output only the paths containing the updated package.json files. Pipe the output to xargs to run npm install in each directory and update the package-lock.json files as well."
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"flags": {
|
|
44
|
+
"verbose": {
|
|
45
|
+
"char": "v",
|
|
46
|
+
"description": "Enable additional logging",
|
|
47
|
+
"name": "verbose",
|
|
48
|
+
"allowNo": false,
|
|
49
|
+
"type": "boolean"
|
|
50
|
+
},
|
|
51
|
+
"recursive": {
|
|
52
|
+
"char": "r",
|
|
53
|
+
"description": "Bump version in current directory and all subdirectories",
|
|
54
|
+
"name": "recursive",
|
|
55
|
+
"allowNo": false,
|
|
56
|
+
"type": "boolean"
|
|
57
|
+
},
|
|
58
|
+
"tag": {
|
|
59
|
+
"char": "t",
|
|
60
|
+
"description": "Version tag to bump target for bump (e.g. v2.10.0), defaults to the CLI version",
|
|
61
|
+
"name": "tag",
|
|
62
|
+
"hasDynamicHelp": false,
|
|
63
|
+
"multiple": false,
|
|
64
|
+
"type": "option"
|
|
65
|
+
},
|
|
66
|
+
"quiet": {
|
|
67
|
+
"char": "q",
|
|
68
|
+
"description": "Only output paths for updated packages",
|
|
69
|
+
"name": "quiet",
|
|
70
|
+
"allowNo": false,
|
|
71
|
+
"type": "boolean"
|
|
72
|
+
},
|
|
73
|
+
"dry": {
|
|
74
|
+
"char": "d",
|
|
75
|
+
"description": "Dry run, do not write changes to package.json files",
|
|
76
|
+
"name": "dry",
|
|
77
|
+
"allowNo": false,
|
|
78
|
+
"type": "boolean"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"hasDynamicHelp": false,
|
|
82
|
+
"hiddenAliases": [],
|
|
83
|
+
"id": "bump",
|
|
84
|
+
"pluginAlias": "@memberjunction/cli",
|
|
85
|
+
"pluginName": "@memberjunction/cli",
|
|
86
|
+
"pluginType": "core",
|
|
87
|
+
"strict": true,
|
|
88
|
+
"enableJsonFlag": false,
|
|
89
|
+
"isESM": true,
|
|
90
|
+
"relativePath": [
|
|
91
|
+
"dist",
|
|
92
|
+
"commands",
|
|
93
|
+
"bump",
|
|
94
|
+
"index.js"
|
|
95
|
+
]
|
|
96
|
+
},
|
|
97
|
+
"clean": {
|
|
98
|
+
"aliases": [],
|
|
99
|
+
"args": {},
|
|
100
|
+
"description": "Resets the MemberJunction database to a pre-installation state",
|
|
101
|
+
"examples": [
|
|
102
|
+
"<%= config.bin %> <%= command.id %>\n"
|
|
103
|
+
],
|
|
104
|
+
"flags": {
|
|
105
|
+
"verbose": {
|
|
106
|
+
"char": "v",
|
|
107
|
+
"description": "Enable additional logging",
|
|
108
|
+
"name": "verbose",
|
|
109
|
+
"allowNo": false,
|
|
110
|
+
"type": "boolean"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"hasDynamicHelp": false,
|
|
114
|
+
"hiddenAliases": [],
|
|
115
|
+
"id": "clean",
|
|
116
|
+
"pluginAlias": "@memberjunction/cli",
|
|
117
|
+
"pluginName": "@memberjunction/cli",
|
|
118
|
+
"pluginType": "core",
|
|
119
|
+
"strict": true,
|
|
120
|
+
"enableJsonFlag": false,
|
|
121
|
+
"isESM": true,
|
|
122
|
+
"relativePath": [
|
|
123
|
+
"dist",
|
|
124
|
+
"commands",
|
|
125
|
+
"clean",
|
|
126
|
+
"index.js"
|
|
127
|
+
]
|
|
128
|
+
},
|
|
25
129
|
"app:check-updates": {
|
|
26
130
|
"aliases": [],
|
|
27
131
|
"args": {},
|
|
@@ -320,110 +424,6 @@
|
|
|
320
424
|
"upgrade.js"
|
|
321
425
|
]
|
|
322
426
|
},
|
|
323
|
-
"bump": {
|
|
324
|
-
"aliases": [],
|
|
325
|
-
"args": {},
|
|
326
|
-
"description": "Bumps MemberJunction dependency versions",
|
|
327
|
-
"examples": [
|
|
328
|
-
{
|
|
329
|
-
"command": "<%= config.bin %> <%= command.id %>",
|
|
330
|
-
"description": "Bump all @memberjunction/* dependencies in the current directory's package.json to the CLI version"
|
|
331
|
-
},
|
|
332
|
-
{
|
|
333
|
-
"command": "<%= config.bin %> <%= command.id %> -rdv",
|
|
334
|
-
"description": "Preview all recursive packages bumps without writing any changes."
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
"command": "<%= config.bin %> <%= command.id %> -rqt v2.10.0 | xargs -n1 -I{} npm install --prefix {}",
|
|
338
|
-
"description": "Recursively bump all @memberjunction/* dependencies in all packages to version v2.10.0 and output only the paths containing the updated package.json files. Pipe the output to xargs to run npm install in each directory and update the package-lock.json files as well."
|
|
339
|
-
}
|
|
340
|
-
],
|
|
341
|
-
"flags": {
|
|
342
|
-
"verbose": {
|
|
343
|
-
"char": "v",
|
|
344
|
-
"description": "Enable additional logging",
|
|
345
|
-
"name": "verbose",
|
|
346
|
-
"allowNo": false,
|
|
347
|
-
"type": "boolean"
|
|
348
|
-
},
|
|
349
|
-
"recursive": {
|
|
350
|
-
"char": "r",
|
|
351
|
-
"description": "Bump version in current directory and all subdirectories",
|
|
352
|
-
"name": "recursive",
|
|
353
|
-
"allowNo": false,
|
|
354
|
-
"type": "boolean"
|
|
355
|
-
},
|
|
356
|
-
"tag": {
|
|
357
|
-
"char": "t",
|
|
358
|
-
"description": "Version tag to bump target for bump (e.g. v2.10.0), defaults to the CLI version",
|
|
359
|
-
"name": "tag",
|
|
360
|
-
"hasDynamicHelp": false,
|
|
361
|
-
"multiple": false,
|
|
362
|
-
"type": "option"
|
|
363
|
-
},
|
|
364
|
-
"quiet": {
|
|
365
|
-
"char": "q",
|
|
366
|
-
"description": "Only output paths for updated packages",
|
|
367
|
-
"name": "quiet",
|
|
368
|
-
"allowNo": false,
|
|
369
|
-
"type": "boolean"
|
|
370
|
-
},
|
|
371
|
-
"dry": {
|
|
372
|
-
"char": "d",
|
|
373
|
-
"description": "Dry run, do not write changes to package.json files",
|
|
374
|
-
"name": "dry",
|
|
375
|
-
"allowNo": false,
|
|
376
|
-
"type": "boolean"
|
|
377
|
-
}
|
|
378
|
-
},
|
|
379
|
-
"hasDynamicHelp": false,
|
|
380
|
-
"hiddenAliases": [],
|
|
381
|
-
"id": "bump",
|
|
382
|
-
"pluginAlias": "@memberjunction/cli",
|
|
383
|
-
"pluginName": "@memberjunction/cli",
|
|
384
|
-
"pluginType": "core",
|
|
385
|
-
"strict": true,
|
|
386
|
-
"enableJsonFlag": false,
|
|
387
|
-
"isESM": true,
|
|
388
|
-
"relativePath": [
|
|
389
|
-
"dist",
|
|
390
|
-
"commands",
|
|
391
|
-
"bump",
|
|
392
|
-
"index.js"
|
|
393
|
-
]
|
|
394
|
-
},
|
|
395
|
-
"clean": {
|
|
396
|
-
"aliases": [],
|
|
397
|
-
"args": {},
|
|
398
|
-
"description": "Resets the MemberJunction database to a pre-installation state",
|
|
399
|
-
"examples": [
|
|
400
|
-
"<%= config.bin %> <%= command.id %>\n"
|
|
401
|
-
],
|
|
402
|
-
"flags": {
|
|
403
|
-
"verbose": {
|
|
404
|
-
"char": "v",
|
|
405
|
-
"description": "Enable additional logging",
|
|
406
|
-
"name": "verbose",
|
|
407
|
-
"allowNo": false,
|
|
408
|
-
"type": "boolean"
|
|
409
|
-
}
|
|
410
|
-
},
|
|
411
|
-
"hasDynamicHelp": false,
|
|
412
|
-
"hiddenAliases": [],
|
|
413
|
-
"id": "clean",
|
|
414
|
-
"pluginAlias": "@memberjunction/cli",
|
|
415
|
-
"pluginName": "@memberjunction/cli",
|
|
416
|
-
"pluginType": "core",
|
|
417
|
-
"strict": true,
|
|
418
|
-
"enableJsonFlag": false,
|
|
419
|
-
"isESM": true,
|
|
420
|
-
"relativePath": [
|
|
421
|
-
"dist",
|
|
422
|
-
"commands",
|
|
423
|
-
"clean",
|
|
424
|
-
"index.js"
|
|
425
|
-
]
|
|
426
|
-
},
|
|
427
427
|
"codegen:5-0-fix-entity-names": {
|
|
428
428
|
"aliases": [],
|
|
429
429
|
"args": {},
|
|
@@ -1273,6 +1273,63 @@
|
|
|
1273
1273
|
"index.js"
|
|
1274
1274
|
]
|
|
1275
1275
|
},
|
|
1276
|
+
"migrate": {
|
|
1277
|
+
"aliases": [],
|
|
1278
|
+
"args": {},
|
|
1279
|
+
"description": "Migrate MemberJunction database to latest version",
|
|
1280
|
+
"examples": [
|
|
1281
|
+
"<%= config.bin %> <%= command.id %>\n",
|
|
1282
|
+
"<%= config.bin %> <%= command.id %> --schema __BCSaaS --dir ./migrations/v1\n",
|
|
1283
|
+
"<%= config.bin %> <%= command.id %> --schema __BCSaaS --tag v1.0.0\n"
|
|
1284
|
+
],
|
|
1285
|
+
"flags": {
|
|
1286
|
+
"verbose": {
|
|
1287
|
+
"char": "v",
|
|
1288
|
+
"description": "Enable additional logging",
|
|
1289
|
+
"name": "verbose",
|
|
1290
|
+
"allowNo": false,
|
|
1291
|
+
"type": "boolean"
|
|
1292
|
+
},
|
|
1293
|
+
"tag": {
|
|
1294
|
+
"char": "t",
|
|
1295
|
+
"description": "Version tag to use for running remote migrations",
|
|
1296
|
+
"name": "tag",
|
|
1297
|
+
"hasDynamicHelp": false,
|
|
1298
|
+
"multiple": false,
|
|
1299
|
+
"type": "option"
|
|
1300
|
+
},
|
|
1301
|
+
"schema": {
|
|
1302
|
+
"char": "s",
|
|
1303
|
+
"description": "Target schema (overrides coreSchema from config)",
|
|
1304
|
+
"name": "schema",
|
|
1305
|
+
"hasDynamicHelp": false,
|
|
1306
|
+
"multiple": false,
|
|
1307
|
+
"type": "option"
|
|
1308
|
+
},
|
|
1309
|
+
"dir": {
|
|
1310
|
+
"description": "Migration source directory (overrides migrationsLocation from config)",
|
|
1311
|
+
"name": "dir",
|
|
1312
|
+
"hasDynamicHelp": false,
|
|
1313
|
+
"multiple": false,
|
|
1314
|
+
"type": "option"
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1317
|
+
"hasDynamicHelp": false,
|
|
1318
|
+
"hiddenAliases": [],
|
|
1319
|
+
"id": "migrate",
|
|
1320
|
+
"pluginAlias": "@memberjunction/cli",
|
|
1321
|
+
"pluginName": "@memberjunction/cli",
|
|
1322
|
+
"pluginType": "core",
|
|
1323
|
+
"strict": true,
|
|
1324
|
+
"enableJsonFlag": false,
|
|
1325
|
+
"isESM": true,
|
|
1326
|
+
"relativePath": [
|
|
1327
|
+
"dist",
|
|
1328
|
+
"commands",
|
|
1329
|
+
"migrate",
|
|
1330
|
+
"index.js"
|
|
1331
|
+
]
|
|
1332
|
+
},
|
|
1276
1333
|
"install": {
|
|
1277
1334
|
"aliases": [],
|
|
1278
1335
|
"args": {},
|
|
@@ -1376,63 +1433,6 @@
|
|
|
1376
1433
|
"index.js"
|
|
1377
1434
|
]
|
|
1378
1435
|
},
|
|
1379
|
-
"migrate": {
|
|
1380
|
-
"aliases": [],
|
|
1381
|
-
"args": {},
|
|
1382
|
-
"description": "Migrate MemberJunction database to latest version",
|
|
1383
|
-
"examples": [
|
|
1384
|
-
"<%= config.bin %> <%= command.id %>\n",
|
|
1385
|
-
"<%= config.bin %> <%= command.id %> --schema __BCSaaS --dir ./migrations/v1\n",
|
|
1386
|
-
"<%= config.bin %> <%= command.id %> --schema __BCSaaS --tag v1.0.0\n"
|
|
1387
|
-
],
|
|
1388
|
-
"flags": {
|
|
1389
|
-
"verbose": {
|
|
1390
|
-
"char": "v",
|
|
1391
|
-
"description": "Enable additional logging",
|
|
1392
|
-
"name": "verbose",
|
|
1393
|
-
"allowNo": false,
|
|
1394
|
-
"type": "boolean"
|
|
1395
|
-
},
|
|
1396
|
-
"tag": {
|
|
1397
|
-
"char": "t",
|
|
1398
|
-
"description": "Version tag to use for running remote migrations",
|
|
1399
|
-
"name": "tag",
|
|
1400
|
-
"hasDynamicHelp": false,
|
|
1401
|
-
"multiple": false,
|
|
1402
|
-
"type": "option"
|
|
1403
|
-
},
|
|
1404
|
-
"schema": {
|
|
1405
|
-
"char": "s",
|
|
1406
|
-
"description": "Target schema (overrides coreSchema from config)",
|
|
1407
|
-
"name": "schema",
|
|
1408
|
-
"hasDynamicHelp": false,
|
|
1409
|
-
"multiple": false,
|
|
1410
|
-
"type": "option"
|
|
1411
|
-
},
|
|
1412
|
-
"dir": {
|
|
1413
|
-
"description": "Migration source directory (overrides migrationsLocation from config)",
|
|
1414
|
-
"name": "dir",
|
|
1415
|
-
"hasDynamicHelp": false,
|
|
1416
|
-
"multiple": false,
|
|
1417
|
-
"type": "option"
|
|
1418
|
-
}
|
|
1419
|
-
},
|
|
1420
|
-
"hasDynamicHelp": false,
|
|
1421
|
-
"hiddenAliases": [],
|
|
1422
|
-
"id": "migrate",
|
|
1423
|
-
"pluginAlias": "@memberjunction/cli",
|
|
1424
|
-
"pluginName": "@memberjunction/cli",
|
|
1425
|
-
"pluginType": "core",
|
|
1426
|
-
"strict": true,
|
|
1427
|
-
"enableJsonFlag": false,
|
|
1428
|
-
"isESM": true,
|
|
1429
|
-
"relativePath": [
|
|
1430
|
-
"dist",
|
|
1431
|
-
"commands",
|
|
1432
|
-
"migrate",
|
|
1433
|
-
"index.js"
|
|
1434
|
-
]
|
|
1435
|
-
},
|
|
1436
1436
|
"querygen:export": {
|
|
1437
1437
|
"aliases": [],
|
|
1438
1438
|
"args": {},
|
|
@@ -3524,5 +3524,5 @@
|
|
|
3524
3524
|
]
|
|
3525
3525
|
}
|
|
3526
3526
|
},
|
|
3527
|
-
"version": "5.
|
|
3527
|
+
"version": "5.10.0"
|
|
3528
3528
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.10.0",
|
|
5
5
|
"description": "MemberJunction command line tools",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"oclif"
|
|
@@ -53,19 +53,19 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@inquirer/prompts": "^8.2.0",
|
|
56
|
-
"@memberjunction/ai-cli": "5.
|
|
57
|
-
"@memberjunction/codegen-lib": "5.
|
|
58
|
-
"@memberjunction/config": "5.
|
|
59
|
-
"@memberjunction/core": "5.
|
|
60
|
-
"@memberjunction/installer": "5.
|
|
61
|
-
"@memberjunction/db-auto-doc": "5.
|
|
62
|
-
"@memberjunction/metadata-sync": "5.
|
|
63
|
-
"@memberjunction/query-gen": "5.
|
|
64
|
-
"@memberjunction/server-bootstrap-lite": "5.
|
|
56
|
+
"@memberjunction/ai-cli": "5.10.0",
|
|
57
|
+
"@memberjunction/codegen-lib": "5.10.0",
|
|
58
|
+
"@memberjunction/config": "5.10.0",
|
|
59
|
+
"@memberjunction/core": "5.10.0",
|
|
60
|
+
"@memberjunction/installer": "5.10.0",
|
|
61
|
+
"@memberjunction/db-auto-doc": "5.10.0",
|
|
62
|
+
"@memberjunction/metadata-sync": "5.10.0",
|
|
63
|
+
"@memberjunction/query-gen": "5.10.0",
|
|
64
|
+
"@memberjunction/server-bootstrap-lite": "5.10.0",
|
|
65
65
|
"@memberjunction/skyway-core": "^0.5.3",
|
|
66
|
-
"@memberjunction/sql-converter": "5.
|
|
67
|
-
"@memberjunction/sqlserver-dataprovider": "5.
|
|
68
|
-
"@memberjunction/testing-cli": "5.
|
|
66
|
+
"@memberjunction/sql-converter": "5.10.0",
|
|
67
|
+
"@memberjunction/sqlserver-dataprovider": "5.10.0",
|
|
68
|
+
"@memberjunction/testing-cli": "5.10.0",
|
|
69
69
|
"@oclif/core": "^3.27.0",
|
|
70
70
|
"@oclif/plugin-help": "^6.2.37",
|
|
71
71
|
"@oclif/plugin-version": "^2.2.36",
|