This is an automated email from the ASF dual-hosted git repository.
wuzhiguo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/bigtop-manager.git
The following commit(s) were added to refs/heads/main by this push:
new 386c1656 BIGTOP-4511: Ignore some files when packing (#286)
386c1656 is described below
commit 386c16565d67a9cc97aaee41f74f458c4a2cee5f
Author: Zhiguo Wu <[email protected]>
AuthorDate: Mon Dec 1 10:39:17 2025 +0800
BIGTOP-4511: Ignore some files when packing (#286)
---
.gitignore | 3 +++
bigtop-manager-dist/src/main/assembly/assembly-src.xml | 7 +++++++
2 files changed, 10 insertions(+)
diff --git a/.gitignore b/.gitignore
index e99a1b64..0f15826d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -38,6 +38,9 @@ build/
### VS Code ###
.vscode/
+### Claude ###
+.claude/
+
### Log ###
logs
tasklogs
diff --git a/bigtop-manager-dist/src/main/assembly/assembly-src.xml
b/bigtop-manager-dist/src/main/assembly/assembly-src.xml
index c4c3ea96..29cd10b9 100644
--- a/bigtop-manager-dist/src/main/assembly/assembly-src.xml
+++ b/bigtop-manager-dist/src/main/assembly/assembly-src.xml
@@ -60,6 +60,9 @@
<exclude>**/.project</exclude>
<exclude>**/.classpath</exclude>
+ <!-- claude ignore -->
+ <exclude>**/.claude/**</exclude>
+
<!-- idea ignore -->
<exclude>**/.idea/**</exclude>
<exclude>**/*.ipr</exclude>
@@ -74,6 +77,10 @@
<exclude>**/node_modules/**</exclude>
<exclude>**/dist/**</exclude>
+ <!-- frontend auto generated files -->
+ <exclude>**/auto-imports.d.ts</exclude>
+ <exclude>**/components.d.ts</exclude>
+
<!-- temp ignore -->
<exclude>**/logs/**</exclude>
<exclude>**/tasklogs/**</exclude>