This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 2daf4b9290f Exclude .pnpm-store from autoapi doc generation (#63386)
2daf4b9290f is described below

commit 2daf4b9290f4e65f6c01de4f2a1f8d2120f25256
Author: Jarek Potiuk <[email protected]>
AuthorDate: Thu Mar 12 02:41:00 2026 +0100

    Exclude .pnpm-store from autoapi doc generation (#63386)
    
    The FAB provider has a .pnpm-store directory inside www/ that autoapi
    was accidentally indexing, producing bogus API docs pages.
    
    Co-authored-by: Claude Opus 4.6 <[email protected]>
---
 devel-common/src/docs/utils/conf_constants.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/devel-common/src/docs/utils/conf_constants.py 
b/devel-common/src/docs/utils/conf_constants.py
index a7a823d8b0a..688fcf6fd6d 100644
--- a/devel-common/src/docs/utils/conf_constants.py
+++ b/devel-common/src/docs/utils/conf_constants.py
@@ -332,6 +332,7 @@ BASIC_AUTOAPI_IGNORE_PATTERNS = [
     "*/airflow/executors/*",
     "*/_internal*",
     "*/node_modules/*",
+    "*/.pnpm-store/*",
     "*/migrations/*",
     "*/contrib/*",
     "*/example_taskflow_api_docker_virtualenv.py",

Reply via email to