detective-stylus
v6.0.0
Published
Get the dependencies of a Stylus file
Readme
detective-stylus
Find the dependencies of a Stylus file
npm install detective-stylusIt's the Stylus counterpart to detective, detective-amd, detective-es6, and detective-sass.
Note: this detective uses a regex to find the @import or @require statements.
Usage
ESM
import fs from 'node:fs';
import detective from 'detective-stylus';
const content = fs.readFileSync('styles.styl', 'utf8');
// list of imported file names (ex: '_foo.styl', '_foo', etc)
const dependencies = detective(content);CommonJS
const { default: detective } = require('detective-stylus');