You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: utils/cliutils/commandsflags.go
+6-1
Original file line number
Diff line number
Diff line change
@@ -363,6 +363,7 @@ const (
363
363
// Unique npm flags
364
364
npmPrefix="npm-"
365
365
npmDetailedSummary=npmPrefix+detailedSummary
366
+
useNpmRc="use-npmrc"
366
367
367
368
// Unique nuget/dotnet config flags
368
369
nugetV2="nuget-v2"
@@ -1704,6 +1705,10 @@ var flagsMap = map[string]cli.Flag{
1704
1705
Name: ApplicationKey,
1705
1706
Usage: "[Optional] JFrog ApplicationKey Key` ` ",
1706
1707
},
1708
+
useNpmRc: cli.BoolFlag{
1709
+
Name: useNpmRc,
1710
+
Usage: "[Default: false] Set to true if you'd like to use the .npmrc file for configurations. Note: This flag would invoke npm native client behind the scenes, has performance implications and does not support deployment view and detailed summary` `",
1711
+
},
1707
1712
}
1708
1713
1709
1714
varcommandFlags=map[string][]string{
@@ -1853,7 +1858,7 @@ var commandFlags = map[string][]string{
0 commit comments