chore(extensions): simplify backend package structure by removing superset_extensions namespace (#38476)

This commit is contained in:
Michael S. Molina
2026-03-06 14:49:49 -03:00
committed by GitHub
parent 5fb9e17721
commit a6c0d6321f
12 changed files with 70 additions and 169 deletions

View File

@@ -133,14 +133,7 @@ def extension_setup_for_bundling():
(frontend_dir / "main.js").write_text("// main js")
# Create some backend files - updated path structure
backend_dir = (
dist_dir
/ "backend"
/ "src"
/ "superset_extensions"
/ "test_org"
/ "test_extension"
)
backend_dir = dist_dir / "backend" / "src" / "test_org" / "test_extension"
backend_dir.mkdir(parents=True)
(backend_dir / "__init__.py").write_text("# init")