0.1.0 • Published 6 years ago

@orbit-tech/sass-unused v0.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
6 years ago

sass-unused

Build Status

A utility for finding unused variables, mixins and functions in a collection of SASS files, built on the gonzales-pe parser.

Usage

Command Line

npm install -g @orbit-tech/sass-unused
sass-unused 'src/**/*.scss'

This will parse all SASS files in 'src' and print a list of identifiers of variables, functions and mixins which are declared but not referenced elsewhere.

Library

var sassUnused = require('@orbit-tech/sass-unused')

sassUnused.findUnused('src/**/*.scss')
  .forEach(ident => console.log(ident))

Caveats

This tool is quite dumb, it assumes that all variables, functions and mixins live in the same namespace and can be identified uniquely via their identifiers.