|
| 1 | +@{ |
| 2 | + ModuleVersion = '0.2' |
| 3 | + Description = 'An Extensible Transpiler for PowerShell (and anything else)' |
| 4 | + RootModule = 'PipeScript.psm1' |
| 5 | + PowerShellVersion = '4.0' |
| 6 | + AliasesToExport = '*' |
| 7 | + FormatsToProcess = 'PipeScript.format.ps1xml' |
| 8 | + TypesToProcess = 'PipeScript.types.ps1xml' |
| 9 | + Guid = 'fc054786-b1ce-4ed8-a90f-7cc9c27edb06' |
| 10 | + CompanyName = 'Start-Automating' |
| 11 | + Copyright = '2022 Start-Automating' |
| 12 | + Author = 'James Brundage' |
| 13 | + FunctionsToExport = '' <#{ |
| 14 | + $exportNames = Get-ChildItem -Recurse -Filter '*-*.ps1' | |
| 15 | + Where-Object Name -notmatch '\.ps1{0,1}\.ps1' | |
| 16 | + Foreach-Object { $_.Name.Substring(0, $_.Name.Length - $_.Extension.Length) } |
| 17 | + "'$($exportNames -join "','")'" |
| 18 | + }#> |
| 19 | + PrivateData = @{ |
| 20 | + PSData = @{ |
| 21 | + ProjectURI = 'https://github.com/StartAutomating/PipeScript' |
| 22 | + LicenseURI = 'https://github.com/StartAutomating/PipeScript/blob/main/LICENSE' |
| 23 | + RecommendModule = @('PSMinifier') |
| 24 | + RelatedModule = @() |
| 25 | + BuildModule = @('EZOut','Piecemeal','PipeScript','HelpOut', 'PSDevOps') |
| 26 | + Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler' |
| 27 | + ReleaseNotes = @' |
| 28 | +## 0.2: |
| 29 | +
|
| 30 | +* Massive Improvements in Templating |
| 31 | + * Templates can be used interactively (Fixes #285) |
| 32 | + * Renaming all Inline Transpilers to Template Transpilers |
| 33 | +* Natural Parsing Improvements |
| 34 | + * ArrayLiterals are expanded (Fixes #291) |
| 35 | + * AsSentence now only allows one value into a singleton (Fixes #279) |
| 36 | + * Not expanding expandable strings (Fixes #286) |
| 37 | +* Transpilers can change nearby context (Fixes #292) |
| 38 | +* Allowing dot syntax to extend across multiple statements (Fixes #273) |
| 39 | +* Adding requires keyword (Fixes #293) |
| 40 | +* PipeScript modifies its own manifest (Fixes #294) |
| 41 | +
|
| 42 | +--- |
| 43 | + |
| 44 | +Additional history in [CHANGELOG](https://pipescript.start-automating.com/CHANGELOG) |
| 45 | +'@ |
| 46 | + } |
| 47 | + } |
| 48 | +} |
0 commit comments