Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# not release

ElectronNET.CLI:

* Invoke 'npm install' without --prod flag to install needed devDependencies as well.

# 0.0.10

ElectronNET.API:
Expand Down
2 changes: 1 addition & 1 deletion ElectronNET.CLI/Commands/BuildCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public Task<bool> ExecuteAsync()
Console.WriteLine("node_modules missing in: " + checkForNodeModulesDirPath);

Console.WriteLine("Start npm install...");
ProcessHelper.CmdExecute("npm install --production", tempPath);
ProcessHelper.CmdExecute("npm install", tempPath);

Console.WriteLine("Start npm install electron-packager...");

Expand Down