We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07719d4 commit 3fc0a13Copy full SHA for 3fc0a13
Pipelines/Scripts/prepare-pages.ps1
@@ -44,6 +44,10 @@ Get-ChildItem -Path (Join-Path $ProjectRoot "*" "package.json") | ForEach-Object
44
if (-not $packageName) {
45
return # this is not an MRTK package, so skip
46
}
47
+
48
+ if ($packageName -eq "org.mixedrealitytoolkit.data") {
49
+ return # this is a deprecated package, so skip
50
+ }
51
52
$packageName = $packageName.Matches[0].Value
53
$packageFriendlyName = (Select-String -Pattern "`"displayName`": `"(.+)`"" -Path $_ | Select-Object -First 1).Matches.Groups[1].Value
0 commit comments