Fix “css is not defined”

This commit is contained in:
Samuel Elliott 2018-03-03 01:47:50 +00:00
parent 9bc29cc66e
commit 976aecd8f2
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
1 changed files with 1 additions and 2 deletions

View File

@ -134,11 +134,10 @@ export default class Theme {
data: config,
path: this.paths.mainPath.replace(/\\/g, '/')
});
console.log('SCSS compiler result:', result);
Logger.log(this.name, ['Finished compiling theme', new class Info {
get SCSS_variables() { console.log(config); }
get Compiled_SCSS() { console.log(css); }
get Compiled_SCSS() { console.log(result.css.toString()); }
get Result() { console.log(result); }
}]);