hitmands/gulp-sass-pedigree

View on GitHub
src/stripScssImports.js

Summary

Maintainability
A
0 mins
Test Coverage
export function stripScssImports(textContent) {

  return (
    // TODO: Handle comments //@import ""; or /* @import ""; */
    textContent.match(/(?:@import\s+)([^;]*)/g) || []
  )
    .reduce((res, filename) => res.concat(
      filename
        .replace(/@import|["'\s]/g, '')
        .split(/,/)
        .map(p => `${p.replace(/\.scss$/, '')}.scss`)
      )
      , [])
    ;
}