This is an automated email from the ASF dual-hosted git repository.
gaojun2048 pushed a commit to branch 1.0.0-release
in repository https://gitbox.apache.org/repos/asf/seatunnel-web.git
The following commit(s) were added to refs/heads/1.0.0-release by this push:
new 2d8046d7 Ignore node files when release src package
2d8046d7 is described below
commit 2d8046d7bf6674ab513675c451ab50d08d9fd62a
Author: gaojun <[email protected]>
AuthorDate: Wed Oct 11 11:37:54 2023 +0800
Ignore node files when release src package
---
seatunnel-web-dist/src/main/assembly/assembly-src.xml | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/seatunnel-web-dist/src/main/assembly/assembly-src.xml
b/seatunnel-web-dist/src/main/assembly/assembly-src.xml
index 7f053147..dce54694 100644
--- a/seatunnel-web-dist/src/main/assembly/assembly-src.xml
+++ b/seatunnel-web-dist/src/main/assembly/assembly-src.xml
@@ -50,6 +50,12 @@
<exclude>release.properties</exclude>
<exclude>**/pom.xml.releaseBackup</exclude>
<exclude>*.gpg</exclude>
+
+ <!-- node ignore -->
+ <exclude>**/seatunnel-ui/dist/**</exclude>
+ <exclude>**/seatunnel-ui/node/**</exclude>
+ <exclude>**/seatunnel-ui/node_modules/**</exclude>
+
<!--github ignore-->
<exclude>**/.github/**</exclude>
<exclude>**/.dlc.json</exclude>
@@ -83,3 +89,4 @@
</fileSet>
</fileSets>
</assembly>
+