detective-stylus

Get the dependencies of a Stylus file

Usage no npm install needed!

<script type="module">
  import detectiveStylus from 'https://cdn.skypack.dev/detective-stylus';
</script>

README

detective-stylus CI npm npm

Find the dependencies of a Stylus file

npm install detective-stylus

It'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

const detective = require('detective-stylus');

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

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