用RHINO编译一个目录和子目录中的所有(css) LESS文件的ANT脚本



我想编译所有的*.less脚本在一个特定的文件夹和它的子目录less-rhino-1.1.3.js

在github上有一个例子可以为一个特定的文件做这个,它工作得很完美。但是我想对一个完整的文件夹做同样的事情。我试了很多次,这是我最后一次尝试。

它不工作,propertyregex似乎不是标准的ANT,我不想使用这样的东西。我甚至不确定这段代码是否能工作。

<project name="test" default="main" basedir="../../">
<property name="css.dir" location="public/css"/>
<property name="tool.less" location="bin/less/less-rhino-1.1.3.js"/>
<property name="tool.rhino" location="bin/tools/rhino/js.jar"/>
<macrodef name="lessjs">
    <attribute name="input" />
    <attribute name="output" />
    <sequential>
        <java jar="${tool.rhino}" fork="true" output="@{output}">
            <arg path="${tool.less}"/>
            <arg path="@{input}"/>
        </java>
        <echo>Lessjs: generated @{output}</echo>
    </sequential>
</macrodef>
<target name="main">
     <echo>compiling less css</echo>
     <fileset dir="${css.dir}" id="myfile">
          <filename name="**/*.less" />
     </fileset>
     <property name="lessfilename" refid="myfile"/>
     <propertyregex property="cssfilename"
          input="${lessfile}"
          regexp="^(.*).less$"
          replace="^1.css$" 
          casesensitive="true" />
     <lessjs input="lessfile" output="cssfilename"/>
</target>
</project>

您可以使用<fileset>来包含需要编译的所有less文件。稍后,您可以使用<mapper>标记相应的定义css文件。

<project name="test" default="main" basedir="../../">
<property name="css.dir" location="public/css"/>
<property name="tool.less" location="bin/less/less-rhino-1.1.3.js"/>
<property name="tool.rhino" location="bin/tools/rhino/js.jar"/>
  <target name="less" description="Convert LESS to CSS then concatenate and Minify any stylesheets">
  <echo message="Converting LESS to CSS..."/>
  <!-- Clear the former compiled css files -->
      <delete includeemptydirs="true">
            <fileset dir="${css.dir}" includes="*.css, **/*.css" defaultexcludes="false"/>
      </delete>
      <apply dir="${css.dir}" executable="java" parallel="false" failonerror="true">
  <!-- Give the input bundle of less files-->
          <fileset dir="${css.dir}">
              <include name="*.less"/>
          </fileset>
          <arg value="-jar" />
          <arg path="${tool.rhino}" />
          <arg path="${tool.less}" />
          <srcfile/>
  <!-- Output the compiled css file with corresponding name -->
          <mapper type="glob" from="*.less" to="${css.dir}/*.css"/>
          <targetfile/>
      </apply>
  </target>
</project>

在几个SO答案的帮助下,我能够拼凑出一个可行的解决方案:

用RHINO编译目录和子目录中的所有(css) LESS文件的ANT脚本

如何从命令行正确执行lessc-rhino-1.6.3.js

我必须从GitHub下载LESS 1.7.5并修改Ant目标,看起来像这样。-f参数和LESS JavaScript是关键:

<property name="css.dir" value="WebContent/css"/>
<property name="less.dir" value="less"/>
<property name="tool.rhino.jar" value="test-lib/rhino-1.7R4.jar"/>
<property name="tool.rhino.lessc" value="test-lib/lessc-rhino-1.7.5.js"/>
<property name="tool.rhino.less" value="test-lib/less-rhino-1.7.5.js"/>
<target name="compile-less" description="compile css using LESS">
    <apply dir="${css.dir}" executable="java" parallel="false" failonerror="true">
        <fileset dir="${less.dir}">
            <include name="styles.less"/>
        </fileset>
        <arg value="-jar"/>
        <arg path="${tool.rhino.jar}"/>
        <arg value="-f"/>
        <arg path="${tool.rhino.less}"/>
        <arg path="${tool.rhino.lessc}"/>
        <srcfile/>
        <mapper type="glob" from="*.less" to="${css.dir}/*.css"/>
        <targetfile/>
    </apply>
</target>

如果最近有人像我一样遇到这个问题,他们可能会发现其他答案中给出的less-rhino-1.1.3.js文件不适用于最新版本的Rhino(对我来说,到目前为止,是来自MDN的1.7R4)。但是1.4.0版本可以,可以从Github这里获得。下面显示了我的build.xml中使用这些最新版本的相关片段。请注意,我只将单个.less文件编译为单个.css文件,因此没有使用迭代或映射器(但显然您可以从其他答案中获得这些)。我所做的其他调整是将输出文件作为less的最终参数,而不是从Ant分支进程中捕获输出,并删除对ant-contrib的依赖(对于简单的一个文件情况不需要)。

<property name="tool.rhino" value="build/lesscss/rhino1_7R4/js.jar" />
<property name="tool.less" value="build/lesscss/less-rhino-1.4.0.js" />
<property name="single-input-lesscss-file" value="/path/to/my/style.less" />
<property name="single-output-css-file" value="/output/my/style.css" />
<target name="compileLessCss" description="Compile the single less file to css">
    <sequential>
        <java jar="${tool.rhino}" fork="true">
            <arg path="${tool.less}" />
            <arg path="${single-input-lesscss-file}" />
            <arg path="${single-output-css-file}" />
        </java>
    </sequential>
</target>

如果maven是您的选项,您可以尝试wro4j-maven-plugin或wro4j-runner(这是一个命令行实用程序)。

使用其中之一,您所要做的就是创建一个资源模型描述符(error .xml):

<groups xmlns="http://www.isdc.ro/wro">
  <group name="g1">
    <css>/path/to/*.less</css>
  </group>
</groups>

其余的将由wro4j库处理。无需携带rhino的工作原理或其他细节。

免责声明:我在wro4j项目工作

我也有同样的问题。我开发了一个使用ant-contrib的解决方案。它期望所有的.less文件都在一个平面目录中,然后移动到另一个平面目录。在此过程中,它会将文件扩展名更改为.css。

<property name="tool.rhino" value="/rhino/js.jar" />
<property name="tool.less" value="src/js/less-rhino-1.1.3.js" />
<property name="tool.ant-contrib" value="/ant-contrib/ant-contrib-1.0b3-1.0b3.jar" />
<property name="less-files-dir" value="src/css/" />
<property name="css-files-dir" value="build/css/" />
<target name="compilecss" depends="setup-ant-contrib-taskdef, get-less-files-in-dir" description="DO THIS THING">
    <for list="${less-files-to-convert}" param="file-name" trim="true" delimiter=",">
        <sequential>
            <propertyregex property="file-name-without-extension"
                        input="@{file-name}"
                        regexp="(.*)..*"
                        select="1"
                        override="yes" />
            <java jar="${tool.rhino}" fork="true" output="${css-files-dir}${file-name-without-extension}.css">
                <arg path="${tool.less}" />
                <arg path="${less-files-dir}@{file-name}" />
            </java>
            <echo>Lessjs: generated ${css-files-dir}${file-name-without-extension}.css</echo>
        </sequential>
    </for>
</target>
<target name="check-for-ant-contrib">
    <condition property="ant-contrib-available">
        <and>
            <available file="${tool.ant-contrib}"/>
        </and>
    </condition>
    <fail unless="ant-contrib-available" message="Ant-Contrib is not available."/>
</target>
<target name="setup-ant-contrib-taskdef" depends="check-for-ant-contrib">
    <taskdef resource="net/sf/antcontrib/antlib.xml">
        <classpath>
            <path location="${tool.ant-contrib}" />
        </classpath>
    </taskdef>
</target>
<target name="get-less-files-in-dir">
    <var name="files-list" value="" />
    <for param="file">
        <path>
            <fileset dir="${less-files-dir}" includes="**/*.less" />
        </path>
        <sequential>
            <propertyregex property="file-name-and-relative-path"
                    input="@{file}"
                    regexp=".*\(.*)"
                    select="1"
                    override="yes" />
            <echo>file name: ${file-name-and-relative-path}</echo>
            <if>
                <equals arg1="${files-list}" arg2="" />
                <then>
                    <var name="files-list" value="${file-name-and-relative-path}" />
                </then>
                <else>
                    <var name="files-list" value="${files-list},${file-name-and-relative-path}" />
                </else>
            </if>
        </sequential>
    </for>
    <property name="less-files-to-convert" value="${files-list}" />
    <echo>files to convert: ${less-files-to-convert}</echo>
</target>

我无法使用JDK 1.6来运行这个,因为javascript的东西已经被合并到JDK中。JDK在发行版中确实有jrunscript可执行文件,但是当我尝试运行less-rhino.js文件时,它无法识别任何readFile()函数。有人调查过吗?否则,我可能会给lesscss-engine一个机会,并增强它来理解文件集。

相关内容

  • 没有找到相关文章