oh-my-posh/packages/powershell
2021-12-16 19:53:46 +01:00
..
deploy.ps1 fix(pwsh): publish module without irrelevant files 2021-11-28 19:08:21 +01:00
oh-my-posh.psd1 fix(pwsh): restore pwsh 5 support 2021-11-30 06:41:40 +01:00
oh-my-posh.psm1 fix(pwsh): correct path separator 2021-12-16 19:53:46 +01:00
README.md fix(pwsh): publish module without irrelevant files 2021-11-28 19:08:21 +01:00

PowerShell package

The goal of this module is to wrap the oh-my-posh binaries into a PowerShell module and allow easy installation and ease of use when setting the prompt.

Testing

Create local package repository to validate changes locally

Create the repository

Register-PSRepository -Name 'LocalRepo' -SourceLocation 'C:\Repo' -PublishLocation 'C:\Repo' -InstallationPolicy Trusted

Make changes and publish to your local repository

For ease testing, up the version number when using the build script, that way you are always able to update the module.

deploy.ps1 -BinVersion 0.1.0 -ModuleVersion 0.0.2 -Repository LocalRepo

Validate changes

Install/Update the module from your local repository and validate the changes.

Install-Module oh-my-posh -Repository LocalRepo -Force