Socket
Socket
Sign inDemoInstall

watch-less-do-more

Package Overview
Dependencies
152
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    watch-less-do-more

Watch less files and their dependency tree for changes & automatically recompile


Version published
Weekly downloads
71
increased by42%
Maintainers
1
Install size
2.77 MB
Created
Weekly downloads
 

Readme

Source

watch-less-do-more CircleCI

Watch less files and their dependency tree for changes & automatically recompile

About

Rather than watching a directory for changes in any files, like other watchers, watch-less-do-more watches your main less file and automatically watches only its dependencies. If the main file, or any of it's dependencies change, the main file is compiled. This also allows you to watch multiple main files in a directory, and only compile the ones that have either changed themselves, or have had their dependencies changed. Additionally, this means that updating your node_modules (if any are dependencies of your less) will cause your less to recompile.

Example

If we have the following files

main-a.less
main-b.less
dependency-of-a.less
dependency-of-b.less
dependency-of-a-and-b.less
not-related-to-other-files.less

And we run the command

watch-less-do-more -i main-a.less -o main-a.css -i main-b.less -o main-b.css
  • Changes to not-related-to-other-files.less will not cause any less to compile.

  • Changes to dependency-of-a-and-b.less will cause both main-a.less and main-b.less to recompile.

  • Changes to dependency-of-a.less will cause only main-a.less to recompile.

  • Changes to dependency-of-b.less will cause only main-b.less to recompile.

Install

Install watch-less-do-more. You'll also need to install less. Currently supports less 2.x.x.

npm install watch-less-do-more less --save

Optionally install postcss if you want to use postcss modules. Currently supports postcss 5.x.x.

npm install postcss --save

Usage

In these examples we're adding a script to our package.json

Single main file

{
  "watch-less": "watch-less-do-more -i source.less -o output.css"
}

Multiple main files

You can define as many files as you like, as long as there is an output argument for every input file

{
  "watch-less": "watch-less-do-more -i source-a.less -o output-a.css -i source-b.less -o output-b.css"
}

PostCSS

You can use PostCSS modules with watch-less-do-more incredibly easily. Just install the modules you want, and tell watch-less-do-more to use them in the same way you would with PostCSS.

{
  "watch-less": "watch-less-do-more -u autoprefixer -i source.less -o output.css"
}

Options

--input, -i   Path to input LESS file                      [string] [required]
--output, -o  Path to output CSS file                      [string] [required]
--use, -u     PostCSS module to use                                   [string]
--help        Show help                                              [boolean]
--version     Show version number                                    [boolean]

Keywords

FAQs

Last updated on 12 Jul 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc