Skip to content

Commit 3025a3a

Browse files
committed
📛 Rename module for consistency with other vN modules
1 parent eb86742 commit 3025a3a

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/PublishPSModuleToGallery.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish PowerShell Module
33
on:
44
push:
55
paths:
6-
- 'vN.AWSSSO/**'
6+
- 'vNugglets.AWSSSO/**'
77
release:
88
types: [released]
99
workflow_dispatch:

ReadMe.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ To install this module:
1818
1. Save or install the module from the PowerShell Gallery:
1919
```powershell
2020
## save it locally for initial inspection -- safety first!
21-
Find-PSResource vN.AWSSSO | Save-PSResource -Path C:\Temp
21+
Find-PSResource vNugglets.AWSSSO | Save-PSResource -Path C:\Temp
2222
## ..then inspect code to confirm trustworthiness, then import it from said saved path
2323
2424
## orrr, YOLO! Install straight away, as vNugglets is a reputable publisher
25-
Find-PSResource vN.AWSSSO | Install-PSResource
25+
Find-PSResource vNugglets.AWSSSO | Install-PSResource
2626
2727
## see the commands in the now-imported/installed module:
28-
Get-Command -Module vN.AWSSSO
28+
Get-Command -Module vNugglets.AWSSSO
2929
```
3030
1. Profit (see Default Parameter setting below, or examples in [How](#how) section)
3131

Update-ThisModuleManifest.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ param(
1010
[Switch]$Recreate
1111
)
1212
begin {
13-
$strModuleName = "vN.AWSSSO"
13+
$strModuleName = "vNugglets.AWSSSO"
1414
$strFilespecForPsd1 = Join-Path ($strModuleFolderFilespec = "$PSScriptRoot\$strModuleName") "${strModuleName}.psd1"
1515

1616
$hshManifestParams = @{

vN.AWSSSO/en-US/about_vN.AWSSSO.help.txt renamed to vNugglets.AWSSSO/en-US/about_vNugglets.AWSSSO.help.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
TOPIC
2-
about_vN.AWSSSO
2+
about_vNugglets.AWSSSO
33

44
SHORT DESCRIPTION
55
Module encapsulating functions for simplified AWS SSO IDC interactions
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
#
2-
# Module manifest for module 'vN.AWSSSO'
2+
# Module manifest for module 'vNugglets.AWSSSO'
33
#
44
# Generated by: Matt Boren, vNugglets
55
#
6-
# Generated on: 10/2/2025
6+
# Generated on: 10/22/2025
77
#
88

99
@{
1010

1111
# Script module or binary module file associated with this manifest.
12-
RootModule = 'vN.AWSSSO_functions.psm1'
12+
RootModule = 'vNugglets.AWSSSO_functions.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.4.0'
15+
ModuleVersion = '2.0.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -89,8 +89,8 @@ AliasesToExport = '*'
8989
# ModuleList = @()
9090

9191
# List of all files packaged with this module
92-
FileList = 'vN.AWSSSO.psd1', 'vN.AWSSSO_functions.psm1',
93-
'en-US\about_vN.AWSSSO.help.txt'
92+
FileList = 'vNugglets.AWSSSO.psd1', 'vNugglets.AWSSSO_functions.psm1',
93+
'en-US\about_vNugglets.AWSSSO.help.txt'
9494

9595
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
9696
PrivateData = @{
File renamed without changes.

0 commit comments

Comments
 (0)