微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – 蚂蚁过程中的回声文件名

我目前在ant构建过程中使用YUI压缩器来缩小CSS和 JavaScript文件.虽然它是在缩小每个文件,但我希望它输出当前尝试应用可执行文件文件名称,以便在发生错误时,我知道哪个文件导致了错误.例如:

[echo] Minifying JS files...
[echo] Trying to minify file1.js...
[echo] Trying to minify file2.js....

我看到的每个解决方案似乎只是在将apply指令应用于所有文件后回显文件集中的所有文件名.

我的ant build目前看起来像这样:

<target name="minifyJS" depends="overwriteCSSWithMinified">
    <echo message="minifying js files and saving them to fileName-min.js" />
    <apply executable="java" parallel="false" dest="${toWebHome}">
        <fileset dir="${toWebHome}">
            <exclude name="**/*.min.js" />
            <include name="**/*.js"/>
         </fileset>
         <arg line="-jar"/>
         <arg path="yuicompressor-2.4.7.jar" />
         <arg line="-v"/>
         <srcfile/>
         <arg line="-o"/>
         <mapper type="glob" from="*.js" to="*-min.js"/>
         <targetfile/>
     </apply>
 </target>

也许还有另一种方法,这样做而不是使用文件集,使用一次循环遍历每个文件的指令并对文件执行应用程序?

解决方法

为此,您需要包含 ant-contrib.然后您可以这样做:

<target name="minifyJS" depends="overwriteCSSWithMinified">
    <echo message="minifying js files and saving them to fileName-min.js" />
    <foreach target="yui" param="jsFile">
        <fileset dir="${toWebHome}">
            <exclude name="**/*.min.js" />  
                     <!-- should this be -min.js instead of .min.js ? -->
            <include name="**/*.js"/>
        </fileset>
    </foreach>
</target>

<target name="yui">
    <echo message="${jsFile}"/>
    <exec executable="java">
        <arg value="-jar"/>
        <arg value="yuicompressor-2.4.7.jar"/>
        <arg value="-v"/>
        <arg value="-o"/>
        <arg value="'.js$:-min.js'"/>
        <arg value="${jsFile}" />
    </exec>
</target>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐