add inlude paths later on

This commit is contained in:
2017-03-12 10:59:21 +01:00
parent 975f27d241
commit ef4ee3ee0b
3 changed files with 22 additions and 1 deletions

View File

@ -20,6 +20,15 @@ export class Smartsass {
}
}
/**
* add further include paths
*/
addIncludePaths (includePathsArray: string[]) {
for (let includePath of includePathsArray) {
this.includePaths.push(includePath)
}
}
/**
* renders the Smartsass classes' entryfile and returns result as string
*/