Skip to content

Unhide build and dist folders in VS Code Explorer#18675

Merged
harupy merged 4 commits intomasterfrom
copilot/remove-build-folder-exclude
Nov 5, 2025
Merged

Unhide build and dist folders in VS Code Explorer#18675
harupy merged 4 commits intomasterfrom
copilot/remove-build-folder-exclude

Conversation

Copy link
Contributor

Copilot AI commented Nov 5, 2025

Removed "**/build": true and "**/dist": true from files.exclude in .vscode/settings.json to allow inspection of built documentation files and distribution artifacts.

Changes:

  • Removed build folder exclusion from VS Code Explorer view
  • Removed dist folder exclusion from VS Code Explorer view
  • Both folders remain excluded from search results (search.exclude) to keep searches clean

Before:

"files.exclude": {
  "**/__pycache__": true,
  "**/node_modules": true,
  "**/build": true,  // ← removed
  "**/dist": true    // ← removed
}

After:

"files.exclude": {
  "**/__pycache__": true,
  "**/node_modules": true
}
Original prompt

Remove "**/build": true, from files.exclude in .vscode/settings.json to unhide build folder. We sometimes need to inspect built documentation files during development.


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

This change unhides the build folder in VS Code Explorer to allow developers
to inspect built documentation files during development.

Signed-off-by: GitHub Copilot <copilot@github.com>

Co-authored-by: harupy <17039389+harupy@users.noreply.github.com>
Copilot AI changed the title [WIP] Remove build folder exclusion from settings Unhide build folder in VS Code Explorer Nov 5, 2025
Copilot AI requested a review from harupy November 5, 2025 04:02
@harupy harupy marked this pull request as ready for review November 5, 2025 04:40
@github-actions
Copy link
Contributor

github-actions bot commented Nov 5, 2025

@Copilot Thank you for the contribution! Could you fix the following issue(s)?

⚠ Invalid PR template

This PR does not appear to have been filed using the MLflow PR template. Please copy the PR template from here and fill it out.

@harupy harupy added the rn/none List under Small Changes in Changelogs. label Nov 5, 2025
Per review feedback, also unhide the dist folder to allow inspection of
build artifacts during development.

Signed-off-by: GitHub Copilot <copilot@github.com>

Co-authored-by: harupy <17039389+harupy@users.noreply.github.com>
Copilot AI changed the title Unhide build folder in VS Code Explorer Unhide build and dist folders in VS Code Explorer Nov 5, 2025
Copilot AI requested a review from harupy November 5, 2025 04:50
@harupy harupy enabled auto-merge November 5, 2025 05:14
@harupy harupy disabled auto-merge November 5, 2025 05:32
@harupy harupy merged commit 34f8a08 into master Nov 5, 2025
52 of 70 checks passed
@harupy harupy deleted the copilot/remove-build-folder-exclude branch November 5, 2025 05:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

rn/none List under Small Changes in Changelogs.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants