Skip to content

Commit

Permalink
Making v5 preview
Browse files Browse the repository at this point in the history
  • Loading branch information
jessehouwing committed May 28, 2024
1 parent bf59b5e commit 932e339
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 10 deletions.
3 changes: 2 additions & 1 deletion BuildTasks/ExtensionVersion/v5/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,5 +164,6 @@
"target": "ExtensionVersion/v5/ExtensionVersion.js",
"argumentFormat": ""
}
}
},
"preview": true
}
3 changes: 2 additions & 1 deletion BuildTasks/InstallExtension/v5/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -161,5 +161,6 @@
"target": "InstallExtension/v5/InstallExtension.js",
"argumentFormat": ""
}
}
},
"preview": true
}
3 changes: 2 additions & 1 deletion BuildTasks/IsValidExtensionAgent/v5/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,6 @@
"target": "IsValisExtensionAgent/v5/IsValidExtension.js",
"argumentFormat": ""
}
}
},
"preview": true
}
3 changes: 2 additions & 1 deletion BuildTasks/PackageExtension/v5/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -230,5 +230,6 @@
"target": "PackageExtension/v5/PackageExtension.js",
"argumentFormat": ""
}
}
},
"preview": true
}
3 changes: 2 additions & 1 deletion BuildTasks/PublishExtension/v5/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -306,5 +306,6 @@
"target": "PublishExtension/v5/PublishExtension.js",
"argumentFormat": ""
}
}
},
"preview": true
}
3 changes: 2 additions & 1 deletion BuildTasks/ShareExtension/v5/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,5 +152,6 @@
"target": "ShareExtension/v5/ShareExtension.js",
"argumentFormat": ""
}
}
},
"preview": true
}
2 changes: 1 addition & 1 deletion BuildTasks/TfxInstaller/v5/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"demands": [
"npm"
],
"preview": false,
"preview": true,
"satisfies": [
"tfx-cli"
],
Expand Down
3 changes: 2 additions & 1 deletion BuildTasks/UnpublishExtension/v5/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,6 @@
"target": "UnpublishExtension/v5/UnpublishExtension.js",
"argumentFormat": ""
}
}
},
"preview": true
}
6 changes: 4 additions & 2 deletions foreach-task.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
(Get-ChildItem buildtasks\*\v*) | ForEach-Object{
(Get-ChildItem buildtasks\*\v5) | ForEach-Object{
write-host $_
Push-Location $_
& npm audit fix
$task = gc -raw task.json | convertfrom-json -AsHashtable
$task.preview = $true
$task | convertto-json -depth 100 | set-content task.json
Pop-Location
}

0 comments on commit 932e339

Please sign in to comment.