Skip to content

Commit 639cc1e

Browse files
authored
Merge pull request #707 from jpogran/gh-705-fix-last-version-date
(GH-705) Fix Puppetfile module update date
2 parents 1ec3cb7 + fc823e0 commit 639cc1e

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/vscode-ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ jobs:
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

psakefile.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

9494
task VendorCytoscape -precondition { !(Test-Path (Join-Path $PSScriptRoot 'vendor\cytoscape')) } {
@@ -98,7 +98,7 @@ task VendorCytoscape -precondition { !(Test-Path (Join-Path $PSScriptRoot 'vendo
9898
}
9999

100100
task CompileTypeScript {
101-
exec { tsc -p ./ }
101+
exec { npm run compile }
102102
}
103103

104104
task Bump {

src/forge.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function getVersion(): string {
2626
export 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

0 commit comments

Comments
 (0)