trm-client 2.0.0 → 2.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/dist/commands/install.js
CHANGED
|
@@ -44,6 +44,7 @@ function install(commandArgs, actionArgs) {
|
|
|
44
44
|
const packageName = commandArgs.package;
|
|
45
45
|
const packageVersion = commandArgs.version || 'latest';
|
|
46
46
|
const forceInstall = commandArgs.force;
|
|
47
|
+
const safe = commandArgs.safe;
|
|
47
48
|
const ignoreSapEntries = commandArgs.ignoreSapEntries;
|
|
48
49
|
const skipDependencies = commandArgs.skipDependencies;
|
|
49
50
|
const skipLang = commandArgs.skipLang;
|
|
@@ -86,6 +87,7 @@ function install(commandArgs, actionArgs) {
|
|
|
86
87
|
packageName,
|
|
87
88
|
version: packageVersion,
|
|
88
89
|
forceInstall,
|
|
90
|
+
safe,
|
|
89
91
|
ci,
|
|
90
92
|
importTimeout,
|
|
91
93
|
ignoreSapEntries,
|
package/dist/index.js
CHANGED
|
@@ -85,6 +85,7 @@ const unpublish = program.command(`unpublish <package> <version>`)
|
|
|
85
85
|
const install = program.command(`install <package> [version]`)
|
|
86
86
|
.description(`Install package`)
|
|
87
87
|
.option(`-f, --force`, `Force install.`, false)
|
|
88
|
+
.option(`-sf, --safe`, `Safe install (Integrity check).`, false)
|
|
88
89
|
.option(`-ci, --ci`, `Clean install, flag used to avoid unnecessary prompts.`, false)
|
|
89
90
|
.option(`-to, --importTimeout <timeout>`, `Import timeout (in seconds).`, '180')
|
|
90
91
|
.option(`-is, --ignoreSapEntries`, `Ignore missing SAP entries.`, false)
|