|
@@ -41,9 +41,10 @@ class Compiler():
|
|
self.paths.append(os.path.join(self.parent.cwd,'assets/css',f))
|
|
self.paths.append(os.path.join(self.parent.cwd,'assets/css',f))
|
|
|
|
|
|
def reload(self):
|
|
def reload(self):
|
|
- # print('Reload sass compiler')
|
|
|
|
|
|
+ print('Reload sass compiler')
|
|
self.fs_watcher.removePaths(self.paths)
|
|
self.fs_watcher.removePaths(self.paths)
|
|
self.refreshPaths()
|
|
self.refreshPaths()
|
|
- # print('paths', self.paths)
|
|
|
|
|
|
+ print('paths', self.paths)
|
|
self.fs_watcher.addPaths(self.paths)
|
|
self.fs_watcher.addPaths(self.paths)
|
|
- # print('files', self.fs_watcher.files())
|
|
|
|
|
|
+ print('files', self.fs_watcher.files())
|
|
|
|
+ self.compile_scss()
|