Whether you're creating simple or robust modules, ModuleTools streamlines the process, making it perfect for CI/CD and automation environments. With comprehensive features included, you can start building PowerShell modules in less than 30 seconds. Let ModuleTools handle the build logic, so you can focus on developing the core functionality of your module.
The structure of the ModuleTools module is meticulously designed according to PowerShell best practices for module development. While some design decisions may seem unconventional, they are made to ensure that ModuleTools and the process of building modules remain straightforward and easy to manage.
Important
Checkout this Blog article explaining core concepts of ModuleTools.
Install-Module -Name ModuleTools
Note: ModuleTolls is still in early development phase and lot of changes are expected. Please read through ChangeLog for all updates.
To ensure this module works correctly, you need to maintain the folder structure and the project.json
file path. The best way to get started is by running the New-MTModule
command, which guides you through a series of questions and creates the necessary scaffolding.
All the Module files should be in inside src
folder
ο .
βββ ξ project.json
βββ ο private
β βββ ο New-PrivateFunction.ps1
βββ ο public
β βββ ο New-PublicFunction.ps1
βββ ο resources
β βββ ξ some-config.json
βββ ο tests
βββ ο Pester.Some.Tests.ps1
Generated module is stored in dist folder, you can easily import it or publish it to PowerShell repository.
ο dist
βββ ο TestModule
βββ ο
TestModule.psd1
βββ ο
TestModule.psm1
The project.json
file contains all the important details about your module and is used during the module build. It should comply with a specific schema. You can refer to the sample project-sample.json
file in the example
directory for guidance.
Run New-MTModule
to generate the scaffolding; this will also create the project.json
file.
- Place all your functions in the
private
andpublic
folders within thesrc
directory. - All functions in the
public
folder are exported during the module build. - All functions in the
private
folder are accessible internally within the module but are not exposed outside the module. - Contents of the
src/resources
folder will be handled based on settingcopyResourcesToModuleRoot
The resources
folder within the src
directory is intended for including any additional resources required by your module. This can include files such as:
- Configuration files: Store any JSON, XML, or other configuration files needed by your module.
- Script files: Place any scripts that are used by your functions or modules, but are not directly part of the public or private functions.
- Documentation files: Include any supplementary documentation that supports the usage or development of the module.
- Data files: Store any data files that are used by your module, such as CSV or JSON files.
- Subfolder: Include any additional folders and their content to be included with the module, such as dependant Modules, APIs, DLLs, etc... organized by a subfolder.
By default, resource files from src/resources
go into dist/resources
. To place them directly in dist (avoiding the resources subfolder), set copyResourcesToModuleRoot
to true
. This provides greater control in certain deployment scenarios where resources files are preferred in module root directory.
Leave src\resources
empty if there is no need to include any additional content in the dist
folder.
An example of the module build where resources were included and copyResourcesToModuleRoot
is set to true.
dist
βββ TestModule
βββ TestModule.psd1
βββ TestModule.psm1
βββ config.json
βββ additionalScript.ps1
βββ helpDocumentation.md
βββ sampleData.csv
βββ subfolder
βββ subConfig.json
βββ subScript.ps1
βββ subData.csv
If you want to run pester
tests keep them in tests
folder, if not you can ignore this function.
This interactive command helps you create the module structure. Easily create the skeleton of your module and get started with module building in no time.
## Create a module skeleton in Work Directory
New-MTModule ~/Work
ModuleTools
is designed so that you don't need any additional tools like make
or psake
to run the build commands. There's no need to maintain complex build.ps1
files or sample .psd1
files. Simply follow the structure outlined above, and you can run Invoke-MTBuild
to build the module. The output will be saved in the dist
folder, ready for distribution.
# From the Module root
Invoke-MTBuild
## Verbose for more details
Invoke-MTBuild -Verbose
This functions give you complete info about the project which can be used in pester tests or for general troubleshooting.
All the pester configurations are stored in project.json
, simply run Invoke-MTTest
command from project root, it will run all the tests inside tests
folder
- To skip a test insdie test directory use
-skip
in describe/it/context block within Pester test. - Use
Get-MTProjectInfo
command inside pester to get great amount of info about project and files
A simple command to update the module version by modifying the values in project.json
. You can also manually edit the file in your favorite editor. This command makes it easy to update the semantic version.
- Running
Update-MTModuleVersion
without any parameters will update the patch version (e.g., 1.0.1 -> 1.0.2). - Running
Update-MTModuleVersion -Label Major
updates the major version (e.g., 1.0.1 -> 2.0.1). - Running
Update-MTModuleVersion -Label Minor
updates the minor version (e.g., 1.0.1 -> 1.1.1).
This is not required for local module builds, if you are running github actions, use the following yaml workflow template to test, build and publish module which helps to automate the process of:
- Checking out the repository code.
- Installing the
ModuleTools
module from the PowerShell Gallery. - Building the module.
- Running Pester tests.
- Publishing the module to a specified repository.
This allows for seamless and automated management of your PowerShell module, ensuring consistency and reliability in your build, test, and release processes.
name: Build, Test and Publish
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install ModuleTools module form PSGallery
run: |
Install-PSResource -Repository PSGallery -Name ModuleTools -TrustRepository
shell: pwsh
- name: Build Module
run: Invoke-MTBuild -Verbose
shell: pwsh
- name: Run Pester Tests
run: Invoke-MTTest
shell: pwsh
- name: Publish Package to Github
run: |
Publish-PSResource -Path ./dist/YourModule -Repository SomeRepository -ApiKey $Env:ApiKey
env:
ApiKey: ${{ secrets.API_KEY }}
shell: pwsh
- Only tested on PowerShell 7.4, most likely wont work on 5.1
- No depenedencies. This module doesnβt depend on any other module.
- Support Classes and Enums in modules
Contributions are welcome! Please fork the repository and submit a pull request with your changes. Ensure that your code adheres to the existing style and includes appropriate tests.
This project is licensed under the MIT License. See the LICENSE file for details.