aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/Rakefile')
-rw-r--r--frontend/Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/Rakefile b/frontend/Rakefile
index 6625bd8..a651a63 100644
--- a/frontend/Rakefile
+++ b/frontend/Rakefile
@@ -78,5 +78,7 @@ end
task :compile do
puts "Running tsc...."
- system "tsc" || exit(1)
+ system "npm tsc" || exit(1)
+ puts "Running node-sass...."
+ system "npm sass" || exit(1)
end