Commit dde4b24
authored
[Init]: Boilerplate scaffold removed (#12)
The module repository no longer contains placeholder template code from
the PSModule framework scaffolding. Only the `New-Jwt` placeholder
function remains, signaling that the module is ready for actual JWT
implementation work.
- Fixes #11
## Changed: Repository content
All template/demo artifacts are removed — classes (`Book`,
`SecretWriter`), functions (`Get-PSModuleTest`, `New-PSModuleTest`,
`Set-PSModuleTest`, `Test-PSModuleTest`), variables (`Planets`, `Moons`,
`SolarSystems`), data files, format definitions, type extensions, init
scripts, nested modules, script loaders, examples, and the manifest
override file.
What remains in `src/`:
```
src/
functions/
public/
New-Jwt.ps1
```
The `New-Jwt` function emits a warning that it is not yet implemented.
This gives CI a valid function to build and test against while
development proceeds in #3.
## Changed: Test file
The test file is renamed from `PSModuleTest.Tests.ps1` to
`Jwt.Tests.ps1` with a single test verifying the placeholder warning
output.
## Changed: README
Rewritten to describe the Jwt module — name, purpose, installation, and
current development status.
## Technical Details
- Removed 32 files totaling ~660 lines of template code
- Code coverage target in `.github/PSModule.yml` lowered from 50% to 0%
— the placeholder function has no meaningful logic to cover
- The `manifest.psd1` is removed because it is optional in the PSModule
framework (only needed to override generated values); will be recreated
in #3 when module metadata is defined
- This PR completes the "Skeleton cleanup" section of the implementation
plan in #31 parent 486bfb9 commit dde4b24
32 files changed
Lines changed: 56 additions & 663 deletions
File tree
- .github
- examples
- src
- assemblies
- classes
- private
- public
- data
- formats
- functions
- private
- public
- init
- modules
- scripts
- types
- variables
- private
- public
- tests
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
14 | 12 | | |
15 | | - | |
16 | | - | |
| 13 | + | |
| 14 | + | |
17 | 15 | | |
18 | 16 | | |
19 | 17 | | |
20 | 18 | | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
| 19 | + | |
| 20 | + | |
26 | 21 | | |
27 | 22 | | |
28 | | - | |
29 | | - | |
| 23 | + | |
30 | 24 | | |
31 | 25 | | |
32 | | - | |
| 26 | + | |
33 | 27 | | |
34 | | - | |
| 28 | + | |
35 | 29 | | |
36 | 30 | | |
37 | | - | |
| 31 | + | |
| 32 | + | |
38 | 33 | | |
39 | 34 | | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | 35 | | |
53 | 36 | | |
54 | 37 | | |
| |||
This file was deleted.
This file was deleted.
Binary file not shown.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
0 commit comments