1.

Explain How You Can Invoke The Compiler From The Command Line?

Answer»

You can INVOKE the compiler from the command LINE in LESS as

$ lessc styles.less

This will output the compiled CSS to stdout; you may then redirect it to a FILE of your choice

$ lessc styles.less > styles.css

You can invoke the compiler from the command line in LESS as

$ lessc styles.less

This will output the compiled CSS to stdout; you may then redirect it to a file of your choice

$ lessc styles.less > styles.css



Discussion

No Comment Found