summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-12-30 14:46:51 +0100
committerMorris Jobke <hey@morrisjobke.de>2021-01-11 12:41:25 +0100
commitc3cb2882682ef535d6ead7e5800185685cee024d (patch)
tree746c13c1fd884822e7e95b57eb12c28aae7cc347 /lib
parent8b656e321bbf358d8074ce8a3976fac5defdece0 (diff)
downloadnextcloud-server-c3cb2882682ef535d6ead7e5800185685cee024d.tar.gz
nextcloud-server-c3cb2882682ef535d6ead7e5800185685cee024d.zip
Bump scssphp/scssphp from 1.0.3 to 1.4.0
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Template/SCSSCacher.php13
1 files changed, 5 insertions, 8 deletions
diff --git a/lib/private/Template/SCSSCacher.php b/lib/private/Template/SCSSCacher.php
index 1c6ca661839..72685a5117c 100644
--- a/lib/private/Template/SCSSCacher.php
+++ b/lib/private/Template/SCSSCacher.php
@@ -47,8 +47,7 @@ use OCP\IMemcache;
use OCP\IURLGenerator;
use ScssPhp\ScssPhp\Compiler;
use ScssPhp\ScssPhp\Exception\ParserException;
-use ScssPhp\ScssPhp\Formatter\Crunched;
-use ScssPhp\ScssPhp\Formatter\Expanded;
+use ScssPhp\ScssPhp\OutputStyle;
class SCSSCacher {
@@ -313,14 +312,12 @@ class SCSSCacher {
]);
// Continue after throw
- $scss->setIgnoreErrors(true);
if ($this->config->getSystemValue('debug')) {
// Debug mode
- $scss->setFormatter(Expanded::class);
- $scss->setLineNumberStyle(Compiler::LINE_COMMENTS);
+ $scss->setOutputStyle(OutputStyle::EXPANDED);
} else {
// Compression
- $scss->setFormatter(Crunched::class);
+ $scss->setOutputStyle(OutputStyle::COMPRESSED);
}
try {
@@ -391,8 +388,8 @@ class SCSSCacher {
$this->injectedVariables = null;
// do not clear locks
- $this->cacheFactory->createDistributed('SCSS-deps-')->clear();
- $this->cacheFactory->createDistributed('SCSS-cached-')->clear();
+ $this->depsCache->clear();
+ $this->isCachedCache->clear();
$appDirectory = $this->appData->getDirectoryListing();
foreach ($appDirectory as $folder) {