Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
Johannes Dahlström be827f80ef Enable on-the-fly SASS compilation in OSGi (#10307) 10 роки тому
..
src/com/vaadin Implement parenthesis-handling fixes for Sass in Vaadin 7.1 (#12834) 10 роки тому
tests Implement parenthesis-handling fixes for Sass in Vaadin 7.1 (#12834) 10 роки тому
README Renamed sass -> theme-compiler for consistency (#9299) 11 роки тому
apache2header.txt Ensure generated parser is re-generated during build (#12937) 10 роки тому
build.xml Enable on-the-fly SASS compilation in OSGi (#10307) 10 роки тому
ivy.xml Use JUnit 4.11 in all modules (#12572) 10 роки тому

README

This project compiles SCSS into CSS.
It parses the SCSS into a tree.

Classes
=======
SassCompiler: This is the main class that can be run from command line. First parameter is for a scss file to be compiled. Second parameter is optional and is a reference to a file where you want the compiled css. If file doesn't exist, it will be deleted. If file exists, it will be deleted and recreated. If second argument is left out, the css will be printed into standard out.
ScssStylesheet: When Scss/Css is parsed in, it will be represented in memory as this file. Reference is got through static get(File file) where file is input.
Parser: A JavaCC compiled java class that parses the input and notifies the DocumentHandler on what nodes it encounters.
Parser.jj: Source for the Parser class.
SCSSDocumentHandlerImpl: Class that takes in calls from parser and creates nodes into ScssStylesheet based on those calls.
Node package: All the nodes representing the Scss/Css in tree format