This is an automated email from the ASF dual-hosted git repository. msyavuz pushed a commit to branch msyavuz/refactor/move-frontend-artifacts-gitignore in repository https://gitbox.apache.org/repos/asf/superset.git
commit aecd47a49421789204f7ff54e8db6a72ed48f6fa Author: Mehmet Salih Yavuz <[email protected]> AuthorDate: Tue Jan 27 22:09:34 2026 +0300 refactor: Move frontend related artifacts into frontend gitignore --- .gitignore | 4 ---- superset-frontend/.gitignore | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index dbc0ea53cf4..f86395f0a5c 100644 --- a/.gitignore +++ b/.gitignore @@ -73,10 +73,6 @@ superset/static/assets/* superset/static/uploads/* !superset/static/uploads/.gitkeep superset/static/version_info.json -superset-frontend/**/esm/* -superset-frontend/**/lib/* -superset-frontend/**/storybook-static/* -superset-frontend/migration-storybook.log yarn-error.log *.map *.min.js diff --git a/superset-frontend/.gitignore b/superset-frontend/.gitignore index 359cf1ea873..71eded30927 100644 --- a/superset-frontend/.gitignore +++ b/superset-frontend/.gitignore @@ -8,3 +8,7 @@ src/temp .temp_cache/ .tsbuildinfo .swc/ +**/esm/* +**/lib/* +**/storybook-static/* +migration-storybook.log
