trm-client 4.0.0 → 4.0.1
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/dist/commands/view.js +3 -2
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/dist/commands/view.js
CHANGED
|
@@ -22,16 +22,17 @@ const _printVersionSection = (systemPackage, registryView) => {
|
|
|
22
22
|
if (!systemPackage && !registryView) {
|
|
23
23
|
return;
|
|
24
24
|
}
|
|
25
|
-
|
|
25
|
+
var oSystemManifest;
|
|
26
26
|
trm_core_1.Logger.log('');
|
|
27
27
|
if (systemPackage) {
|
|
28
|
+
oSystemManifest = systemPackage.manifest.get();
|
|
28
29
|
trm_core_1.Logger.success(`Installed on ${trm_core_1.SystemConnector.getDest()}: Yes`);
|
|
29
30
|
trm_core_1.Logger.info(`Installed version: ${oSystemManifest.version}`);
|
|
30
31
|
}
|
|
31
32
|
else {
|
|
32
33
|
trm_core_1.Logger.info(`Installed on ${trm_core_1.SystemConnector.getDest()}: No`);
|
|
33
34
|
}
|
|
34
|
-
if (registryView.release) {
|
|
35
|
+
if (registryView && registryView.release) {
|
|
35
36
|
trm_core_1.Logger.info(`Latest version available: ${registryView.release.version}`);
|
|
36
37
|
if (oSystemManifest) {
|
|
37
38
|
if ((0, semver_1.eq)(oSystemManifest.version, registryView.release.version)) {
|
package/dist/index.js
CHANGED
|
@@ -70,6 +70,7 @@ When a release is already published, the latest available manifest is used but c
|
|
|
70
70
|
Translation transport is only generated for packages that contain one or more objects with translations (unless skipped by flag).
|
|
71
71
|
Customizing transport is only generated if a valid list of customizing transports is provided (unless skipped by flag).
|
|
72
72
|
If a default manifest with dependencies is provided in conjunction with the automatic dependency generation, results will be merged.`)
|
|
73
|
+
.option(`-p, --private`, `Publish package with private visibility.`)
|
|
73
74
|
.option(`-np, --noPrompts`, `No prompts (will force some decisions).`, false)
|
|
74
75
|
.option(`-km, --keepLatestReleaseManifestValues`, `Keep the latest release (if exists) manifest values as defaults.`, true)
|
|
75
76
|
.option(`-nl, --noLanguageTransport`, `Skip language (translations) transport publish.`, false)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trm-client",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "TRM (Transport Request Manager) Client",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"ini": "^4.1.1",
|
|
43
43
|
"node-html-parser": "^6.1.13",
|
|
44
44
|
"semver": "^7.5.4",
|
|
45
|
-
"trm-core": "^6.1.
|
|
45
|
+
"trm-core": "^6.1.15",
|
|
46
46
|
"trm-registry-types": "^1.2.0",
|
|
47
47
|
"xml2js": "^0.6.2"
|
|
48
48
|
},
|