Init#1
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR performs an initialization cleanup by removing all existing module content and updating the code coverage target from 0% to 50%. This appears to be a complete reset of a PowerShell module project to start fresh.
- Removed all existing PowerShell functions, classes, variables, and configuration files
- Deleted test files for removed functions while keeping the test framework structure
- Updated code coverage target from 0% to 50% in the build configuration
Reviewed Changes
Copilot reviewed 27 out of 28 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tests/PSModuleTest.Tests.ps1 | Removed tests for deleted functions, keeping only Set-PSModuleTest |
| src/variables/public/SolarSystems.ps1 | Deleted entire solar systems variable definition |
| src/variables/public/Planets.ps1 | Deleted planets variable definition |
| src/variables/public/Moons.ps1 | Deleted moons variable definition |
| src/variables/private/PrivateVariables.ps1 | Deleted private variables for habitable and inhabited planets |
| src/types/FileInfo.Types.ps1xml | Deleted FileInfo type extension definitions |
| src/types/DirectoryInfo.Types.ps1xml | Deleted DirectoryInfo type extension definitions |
| src/scripts/loader.ps1 | Deleted loader script |
| src/modules/OtherPSModule.psm1 | Deleted other module implementation |
| src/manifest.psd1 | Deleted module manifest override file |
| src/init/initializer.ps1 | Deleted initialization script |
| src/header.ps1 | Deleted module header script |
| src/functions/public/Test-PSModuleTest.ps1 | Deleted Test-PSModuleTest function |
| src/functions/public/New-PSModuleTest.ps1 | Deleted New-PSModuleTest function |
| src/functions/public/Get-PSModuleTest.ps1 | Deleted Get-PSModuleTest function |
| src/functions/private/Set-InternalPSModule.ps1 | Deleted private Set function |
| src/functions/private/Get-InternalPSModule.ps1 | Deleted private Get function |
| src/formats/Mygciview.Format.ps1xml | Deleted custom format view definition |
| src/formats/CultureInfo.Format.ps1xml | Deleted CultureInfo format definition |
| src/finally.ps1 | Deleted final loader script |
| src/data/Settings.psd1 | Deleted settings data file |
| src/data/Config.psd1 | Deleted configuration data file |
| src/classes/public/Book.ps1 | Deleted Book and BookList class definitions |
| src/classes/private/SecretWriter.ps1 | Deleted SecretWriter class definition |
| src/README.md | Deleted source directory documentation |
| examples/General.ps1 | Deleted general usage example |
| .github/PSModule.yml | Updated code coverage target from 0% to 50% |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
|
Module Gemini - 0.0.1 published to the PowerShell Gallery. |
|
GitHub release for Gemini v0.0.1 has been created. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Init