Move toju-app into own its folder

This commit is contained in:
2026-03-29 23:30:37 +02:00
parent 0467a7b612
commit 8162e0444a
287 changed files with 42 additions and 34 deletions

View File

@@ -122,7 +122,7 @@ function processFile(filePath) {
const args = process.argv.slice(2);
const files = args.length > 0
? args
: glob.sync('src/app/**/*.html', { cwd: process.cwd() });
: glob.sync('toju-app/src/app/**/*.html', { cwd: process.cwd() });
let formatted = 0;
files.forEach(file => {

View File

@@ -108,7 +108,7 @@ if (args.length > 0) {
}
});
} else {
walkDir(path.join(process.cwd(), 'src/app'), (filePath) => {
walkDir(path.join(process.cwd(), 'toju-app/src/app'), (filePath) => {
if (formatFile(filePath)) {
processed++;
}