Find the dependencies of a less file
npm install @dependents/detective-less
Note: This is specific to the .less style syntax.
It's the LESS counterpart to detective, detective-amd, and detective-es6.
- The AST is generated using the gonzales-pe parser.
const fs = require('fs');
const detective = require('@dependents/detective-less');
const content = fs.readFileSync('styles.less', 'utf8');
// list of imported file names (ex: 'foo.less', 'foo', etc)
const dependencies = detective(content);
// or to also detect any url() references to images, fonts, etc.
const allDependencies = detective(content, { url: true });
url
(optional): (Boolean
) also detect anyurl()
references to images, fonts, etc.