🔧 Make devenv init yarn indpendent

This commit is contained in:
Andrey Antukh
2025-12-30 15:28:19 +01:00
parent 48e3f35bb3
commit 824ca1bbca
6 changed files with 27 additions and 19 deletions

View File

@@ -73,7 +73,7 @@ export function isJsFile(path) {
export async function compileSass(worker, path, options) {
path = ph.resolve(path);
log.info("compile:", path);
// log.info("compile:", path);
return worker.exec("compileSass", [path, options]);
}

7
frontend/scripts/watch Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
TARGET=${1:-app};
set -ex
exec yarn run watch:$TARGET