使用Shrinksafe合并JS文件

时间:2011-03-28 09:05:54

标签: javascript dojo

亲爱的, 我需要使用Shrinksafe将一个文件夹中的所有JavaScript文件合并到一个文件中。 我正在使用以下ANT脚本。但这不能正常工作。

<!-- Merge the JS files in scripts folder to a single file-->
<target name="mergegp-js">
    <echo message="Starting Merging"/>          
    <java fork="true" dir="${shrinksafe.util.path}/buildscripts" classname="org.mozilla.javascript.tools.shell.Main">
        <classpath>
           <pathelement location="${shrinksafe.util.path}/shrinksafe/js.jar"/>
           <pathelement location="${shrinksafe.util.path}/shrinksafe/shrinksafe.jar"/>
           <pathelement path="${java.class.path}"/>
         </classpath>
         <arg value="build.js"/>
         <arg value="${merged.gpstatic.folder}/test/scripts/*.js > tempMerged.js"/>
   </java>
   <echo message="js build successfull." />
</target>

但是上面的脚本给了我以下错误。

[java] js: "jslib/buildUtil.js", line 1168: exception from uncaught JavaScript throw: Malformed name/value pair: [C:/Test/scripts/*.js]. Format should be name=value

有人可以指导我解决这个问题。?

2 个答案:

答案 0 :(得分:2)

build.js的参数应采用name=value格式。例如,profile=standard action=release。您需要更改参数的语法以匹配格式。

之后的那一行
<arg value="build.js"/>

应该是:

<arg value="profile=standard action=release" />

答案 1 :(得分:0)

您确定这是有效的XML:

<arg value="${merged.gpstatic.folder}/test/scripts/*.js > tempMerged.js"/>