Skip to content

Studytube/scss-concat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scss-concat

Concatenation for scss files (not compilation)

install

npm install scss-concat

use

import

let scssConcat = require('../scss-concat');

call concat method

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));

About

Concatenation for scss files (not compilation)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published