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 7708c19 commit edd5b99Copy full SHA for edd5b99
deploy.php
@@ -47,6 +47,10 @@
47
run('ln -sf docs/_build/html pub');
48
});
49
50
+task('node:build:scss', static function() {
51
+ run('npx sass --style compressed --no-source-map docs/_static/scss:docs/_static/css');
52
+});
53
+
54
# HMV configuration for when this is running in a docker
55
task('deploy:hmv_docker', static function () use (&$DOCKER_HOST, &$DOCKER_WEBROOT) {
56
if (test('[ -f /etc/hypernode/is_docker ]')) {
@@ -71,6 +75,7 @@
71
75
72
76
73
77
$configuration = new Configuration();
78
+$configuration->addBuildTask('node:build:scss');
74
79
$configuration->addBuildTask('python:venv:create');
80
$configuration->addBuildTask('python:venv:requirements');
81
$configuration->addBuildTask('python:build_documentation');
0 commit comments