devModulesDirMonitor
0.0.2.0
Provides functions (cmdlets) to monitor changes in modules in developer folder. Updated module will be updated via command Import-Module $modName -Force.
How to use.
Add the following code in your project entry point file.
function monitorChangesInModules($dir) {
startDirMonitor $dir
if ($updatedModules) {
foreach ($modNam
How to use.
Add the following code in your project entry point file.
function monitorChangesInModules($dir) {
startDirMonitor $dir
if ($updatedModules) {
foreach ($modNam
Provides functions (cmdlets) to monitor changes in modules in developer folder. Updated module will be updated via command Import-Module $modName -Force.
How to use.
Add the following code in your project entry point file.
function monitorChangesInModules($dir) {
startDirMonitor $dir
if ($updatedModules) {
foreach ($modName in $updatedModules) {
Import-Module "$modName" -Force
}
resetChangedModulesList
}
}
$dirToWatch = ".\myModules"
monitorChangesInModules($dirToWatch)
Show more
How to use.
Add the following code in your project entry point file.
function monitorChangesInModules($dir) {
startDirMonitor $dir
if ($updatedModules) {
foreach ($modName in $updatedModules) {
Import-Module "$modName" -Force
}
resetChangedModulesList
}
}
$dirToWatch = ".\myModules"
monitorChangesInModules($dirToWatch)
Installation Options
Owners
Copyright
(c) 2019 DMhome. All rights reserved.
Package Details
Author(s)
- Dmitry Molchanov
Functions
resetChangedModulesList startDirMonitor
Dependencies
This module has no dependencies.
FileList
- devModulesDirMonitor.nuspec
- devModulesDirMonitor.psd1
- devModulesDirMonitor.psm1
Version History
Version | Downloads | Last updated |
---|---|---|
0.0.2.0 (current version) | 275 | 11/14/2019 |
0.0.1.0 | 25 | 11/14/2019 |