npm.io
7.0.1 • Published 2 months ago

detective-sass

Licence
MIT
Version
7.0.1
Deps
2
Size
6 kB
Vulns
0
Weekly
0
Stars
6

detective-sass

CI npm version npm downloads

Find the dependencies of a sass file

npm install detective-sass

Note: This is specific to the .sass style syntax of the Sass preprocessor. For SCSS support, please see node-detective-scss.

It's the SASS counterpart to detective, detective-amd, and detective-es6.

Usage

ESM

import fs from 'node:fs';
import detective from 'detective-sass';

const content = fs.readFileSync('styles.sass', 'utf8');

// list of imported file names (ex: '_foo.sass', '_foo', etc)
const dependencies = detective(content);

// or to also detect any url() references to images, fonts, etc.
const allDependencies = detective(content, { url: true });
CommonJS
const { default: detective } = require('detective-sass');
Options
  • url (optional): (Boolean) also detect any url() references to images, fonts, etc.
  • node-sass-lookup if you want to map a sass/scss dependency to a file on your filesystem.
  • node-precinct if you want to also support finding dependencies for JavaScript and other languages.

License

MIT

Keywords