Concatenation for scss files (not compilation)
npm install scss-concat
let scssConcat = require('../scss-concat');
scssConcat.concat({
src: './tests/vectors/test1/index.scss',
dest: './tests/concatenationmagic.scss'
});
or without dest, just to get concatenation result:
scssConcat.concat({
src: './tests/vectors/test1/index.scss'
}).then(fileContent => console.log(fileContent.length));