Skip to content

A nodejs script that allows you to watch a folder for changes and compile the less css files into another folder.

License

Notifications You must be signed in to change notification settings

JamesMcIntosh/deadsimple-less-watch-compiler

 
 

Repository files navigation

Build Status npm version Dependencies devDependency Status Commitizen friendly

Dead Simple LESS CSS Watch Compiler

A command that watches folders(and subfolders) for file changes and automatically compile the less css files into css. This is a file system watcher and compiler. It also keep track of a dependency tree and recompiles the parent if an imported (child) LESS file is changed.

Parts of this script is modified from Mikeal Rogers's watch script (https://github.com/mikeal/watch)

Prerequisites

The commands below may need to be prefixed with sudo depending upon your system

Install LESS and make sure the lessc binary is accessible to the script. Installing LESS with the -g(global) flag will make the binary accessible to your system.

yarn global add less
npm install -g less

Installation

The commands below may need to be prefixed with sudo depending upon your system

Install the less-watch-compiler command globally.

yarn global add less-watch-compiler
npm install -g less-watch-compiler

Usage

With no main file

You need to pass in the minimum 2 parameters - <source_dir> and <destination_dir> . First parameter is the source folder to watch for changes and second is the output folder in which the css files will be compiled

Usage:

less-watch-compiler [options] <source_dir> <destination_dir>

With main file

If you pass in the 3rd optional parameter, Any file change will trigger only to compile the main file specified in the 3rd parameter. Assuming the 3rd is "main.less"

Usage:

less-watch-compiler [options] <source_dir> <destination_dir> [main-file]

Basic example

 root 
 └──src
 │    └── main.less
 │    └── aux.less
 └──dist
      └── main.css

The project can be compiled with the following command:

less-watch-compiler src dist main.less

Configuration File

By default the the configuration file is loaded from ./less-watch-compiler.config.json but can also be specified by the --config option.

Example using the project tree laid out in the previous example

less-watch-compiler.config.json

{
    "watchFolder": "src",
    "outputFolder": "dist",
    "mainFile": "main.less"
}

The project can be compiled with the following command:

less-watch-compiler

All configuration file options

{
    "watchFolder": "<input_folder>",   
    "outputFolder": "<output_folder>",
    "mainFile": "<main-file>",   
    "sourceMap": false,
    "plugins": "plugin1,plugin2",
    "runOnce": false,
    "enableJs": true
}

Options:

-h, --help                       output usage information
-V, --version                    output the version number
--source-map                     Generate source map for css files
--main-file <file>               Specify <file> as the file to always re-compile e.g. '--main-file style.less'
--plugins <plugin-a>,<plugin-b>  List of plugins separated by commas
--config <file>                  Custom configuration file path (default less-watch-compiler.config.json)
--run-once                       Run the compiler once without waiting for additional changes
--enable-js                      Enables inline JavaScript in less files

Extras:

  • By default, "minified" is turned on to always compress/minify output. You can set the minification to false by adding "minified":false in the config file.
  • By default, "sourceMap" is turned off. You can generating sourcemap to true by adding "sourceMap":true in the config file.
  • By default, this script only compiles files with .less extension. More file extensions can be added by modifying the allowedExtensions array in config.json.
  • Files that start with underscores _style.css or period .style.css are ignored. This behavior can be changed in the filterFiles() function.
  • When --run-once used, compilation will fail on first error

Using the source files

Alternativelly, you can checkout the code and run things locally like this:

node less-watch-compiler.js [options]

To run unit tests: yarn test or npm test (see tests/test.js).

About

A nodejs script that allows you to watch a folder for changes and compile the less css files into another folder.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.4%
  • CSS 1.5%
  • Shell 0.1%