PipeScript.psd1
@{ ModuleVersion = '0.0.5' Description = 'An Extensible Transpiler for PowerShell (and anything else)' RootModule = 'PipeScript.psm1' PowerShellVersion = '4.0' AliasesToExport = '*' FormatsToProcess = 'PipeScript.format.ps1xml' TypesToProcess = 'PipeScript.types.ps1xml' Guid = 'fc054786-b1ce-4ed8-a90f-7cc9c27edb06' CompanyName='Start-Automating' Copyright='2022 Start-Automating' Author='James Brundage' PrivateData = @{ PSData = @{ ProjectURI = 'https://github.com/StartAutomating/PipeScript' LicenseURI = 'https://github.com/StartAutomating/PipeScript/blob/main/LICENSE' Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler' ReleaseNotes = @' ## 0.0.5 * New Language Features: * PipedAssignment (#88) * Command Fixes: * Invoke-PipeScript now defaults unmapped files to treating them as PowerShell / PipeScript (#86) * Improved Transpilers: * .>PipeScript.Inline now supports -StartPattern/-EndPattern (#85) * Inline Transpilers now use -StartPattern/-EndPattern (#85) * Inline PipeScript Support for New Languages * .>Inline.PSD1 (#89) * .>Inline.XML now handles .PS1XML (#91) --- ## 0.0.4 * New Transpilers: * .>RegexLiteral (#77) * Improved Transpilers: * .>PipeScript.Inline now supports -ReplacePattern (#84) * .>Include now supports wildcards (#81) * Inline PipeScript Support for New Languages * ATOM (#79) * Bicep (#73) * HLSL (#76) * Perl / POD (#74) * RSS (#80) --- ## 0.0.3 * New Transpilers: * .>ValidateExtension (#64) * .>OutputFile (#53) * Inline PipeScript Support for New Languages * Python (#63) * PHP (#67) * Razor (#68) * Bugfixes / improvements: * Plugged Invoke-PipeScript Parameter Leak (#69) * .>ValidateTypes transpiler now returns true (#65) * .>ValidateTypes transpiler now can apply to a [VariableExpressionAST] (#66) * Building PipeScript with PipeScript (#54) --- ## 0.0.2 * New Transpilers: * .>ValidatePlatform (#58) * .>ValidatePropertyName (#59) * .>Inline.ObjectiveC (#60) * Transpiler Fixes * .>VBN now supports -Position (#57) * GitHub Action Bugfix (#55) --- ## 0.0.1 Initial Commit. '@ } } } |