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
Adds additional new parameter to force a node install, instead of
skipping due to an existing node_modules folder. This is also implicitly
triggered by providing your own package.json file. This ensures that the
actual packages match the package.json.
Copy file name to clipboardExpand all lines: ElectronNET.CLI/Commands/BuildCommand.cs
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ public class BuildCommand : ICommand
22
22
"Optional: '/relative-path' to specify output a subdirectory for output."+Environment.NewLine+
23
23
"Optional: '/absolute-path to specify and absolute path for output."+Environment.NewLine+
24
24
"Optional: '/package-json' to specify a custom package.json file."+Environment.NewLine+
25
+
"Optional: '/install-modules' to force node module install. Implied by '/package-json'"+Environment.NewLine+
25
26
"Full example for a 32bit debug build with electron prune: build /target custom win7-x86;win32 /dotnet-configuration Debug /electron-arch ia32 /electron-params \"--prune=true \"";
0 commit comments