File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 5454 shell : pwsh
5555 run : |
5656 npm install -g vsce --silent;
57- npm install -g typescript --silent;
5857 npm install --silent;
5958
6059 - name : npm build
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ task VendorEditorSyntax -precondition { !(Test-Path (Join-Path $PSScriptRoot 'sy
8888 throw " Unable to vendor Editor Syntax. Missing a release, directory, or git reference configuration item"
8989 }
9090
91- Invoke-RestMethod - Uri $uri - OutFile $syntaxFilePath - ErrorAction Stop
91+ Invoke-RestMethod - Uri $uri - OutFile $syntaxFilePath - ErrorAction Stop
9292}
9393
9494task VendorCytoscape - precondition { ! (Test-Path (Join-Path $PSScriptRoot ' vendor\cytoscape' )) } {
@@ -98,7 +98,7 @@ task VendorCytoscape -precondition { !(Test-Path (Join-Path $PSScriptRoot 'vendo
9898}
9999
100100task CompileTypeScript {
101- exec { tsc - p . / }
101+ exec { npm run compile }
102102}
103103
104104task Bump {
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ function getVersion(): string {
2626export function buildMarkdown ( info : PuppetForgeModuleInfo ) : MarkdownString {
2727 const message = `## ${ info . name } \n
2828${ info . summary } \n
29- **Latest version:** ${ info . version } (${ info . created . toDateString ( ) } )\n
29+ **Latest version:** ${ info . version } (${ info . updated . toDateString ( ) } )\n
3030**Forge**: [${ info . forgeUrl } ](${ info . forgeUrl } )\n
3131**Project**: [${ info . homepageUrl } ](${ info . homepageUrl } )\n
3232**Owner:** ${ info . owner . username } \n
You can’t perform that action at this time.
0 commit comments