This is an automated email from the ASF dual-hosted git repository.
joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new d47c56b build: exclude playerglobal and airglobal .swc files when
copying typedefs/externs
d47c56b is described below
commit d47c56b4701f94ce4f344e299673d12d4db16798
Author: Josh Tynjala <[email protected]>
AuthorDate: Tue Mar 23 13:24:08 2021 -0700
build: exclude playerglobal and airglobal .swc files when copying
typedefs/externs
---
build.xml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/build.xml b/build.xml
index 0bb8d8a..99a48df 100644
--- a/build.xml
+++ b/build.xml
@@ -488,6 +488,8 @@ limitations under the License.
<copy todir="${basedir}/js/libs" flatten="true">
<fileset dir="${ROYALE_TYPEDEFS_HOME}">
<include name="**/*.swc"/>
+ <exclude name="airglobal/**/*.swc"/>
+ <exclude name="playerglobal/**/*.swc"/>
</fileset>
</copy>
<antcall target="rename_jquery" />