We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83f00cf commit 534d9b8Copy full SHA for 534d9b8
app.pl
@@ -12,8 +12,12 @@
12
13
plugin AssetPack => { pipes => [qw/Sass JavaScript Combine/] };
14
app->asset->process('app.css' => 'sass/style.scss' );
15
-spurt app->asset->processed('app.css')->map("content")->join
16
- => catfile qw{html css style.css};
+
+my $style_sheet = catfile qw{html css style.css};
17
+app->log
18
+ ->debug("Processing SASS and copying the results over to $style_sheet...");
19
+spurt app->asset->processed('app.css')->map("content")->join => $style_sheet;
20
+app->log->debug('...Done');
21
22
## ROUTES
23
0 commit comments