0

https://developers.google.com/closure/templates/docs/commands解释了如何使用命令行编译 Google 样式表。我期待像 SoyFileSet 这样可以用来编译 Google 模板的东西。是否有类似的类用于编译样式表?

4

1 回答 1

2

您可以从命令行运行一个名为closure-stylesheets.jar 的java jar。你可以在这里下载:https ://code.google.com/p/closure-stylesheets/downloads/list

我们通过这样的 Ant 任务运行它:

<target name="closure-stylesheets">
        <java jar="closure-stylesheets/closure-stylesheets.jar" fork="true" failonerror="true">
            <arg line="--output-file ../styles/closure.css"/>
            <arg value="closure-stylesheets/closure-main-def.gss"/>
            <arg value="closure-stylesheets/closure.gss"/>
            <arg value="closure-stylesheets/tree.css"/>
        </java>
</target>

如果您正在使用 Soy 模板并想使用闭包的 CSS 重命名功能,请看这里(我不熟悉使用这个):https ://code.google.com/p/closure-stylesheets/#Renaming

于 2013-06-12T13:39:52.787 回答