Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Registry docs for Azure Native v3 #6426

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/minify-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function minifyCSS(filePath) {
// should not affect the minified bundle, since there isn't any new css being
// used for this package that wouldn't already be in the bundle.
skippedContentGlobs: [
"public/registry/packages/azure-native-v1/**/*",
"public/registry/packages/azure-native-v2/**/*",
],
css: [
bundlePath,
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-browser-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const singles = [
"aws-native",
"azure",
"azure-native",
"azure-native-v1",
"azure-native-v2",
"gcp",
"google-native",
"kubernetes",
Expand Down
7 changes: 4 additions & 3 deletions scripts/search/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ let allObjects = [
...registryObjects,
];

// Temporary hack: Remove any references to `azure-native-v1`. This line can be
// removed once the azure-native-v1 package is removed from the Registry.
// Temporary hack: Remove any references to `azure-native-v2`. This line can be
// removed once the azure-native-v2 package is removed from the Registry.
// https://github.com/pulumi/registry/issues/2879
allObjects = allObjects.filter(o => !o.href.includes("azure-native-v1"));
// https://github.com/pulumi/pulumi-azure-native/issues/3420
allObjects = allObjects.filter(o => !o.href.includes("azure-native-v2"));

// Write the results, just so we have them.
console.log(" ↳ Writing results...");
Expand Down

This file was deleted.

Loading
Loading