-
Notifications
You must be signed in to change notification settings - Fork 98
Open
Milestone
Description
Summary of the new feature / enhancement
As a user, I expect Publish-Module to publish a module, not package AND publish a module. As a user, I also expect that I can issue Package-Module to create a new module package that can then be published to one or more places, such as the PowerShellGallery and/or private package feeds.
Proposed technical implementation details (optional)
For example, the following workflows are what I desire:
PS C:\MyProject> Package-Module -Path ./out/MyModule
ModuleName Version Path
---------- ------- -------------------------
MyModule 1.0.0 C:\MyProject\artifacts\MyModule-1.0.0.nupkg
and then, combined with Publish-Module
, perhaps something like:
PS C:\MyProject> Package-Module -Path ./out/MyModule -PassThru | Publish-Module ...
TravisEz13