Forgot about logging and housekeeping.

This commit is contained in:
flash 2024-06-09 19:54:05 +00:00
parent a2c2a5f7b6
commit 8d1650260c
3 changed files with 20 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@flashwave/assproc",
"version": "0.0.1",
"version": "0.1.0",
"description": "Personal frontend asset processing tool",
"main": "index.js",
"scripts": {

View file

@ -3,6 +3,7 @@ import apHtml from './handlers/html.js';
import apJs from './handlers/js.js';
import apTwig from './handlers/twig.js';
import apWebManifest from './handlers/webmanifest.js';
import { housekeep } from './housekeep.js';
const DEFAULT_ENV = {
debug: false,
@ -10,6 +11,7 @@ const DEFAULT_ENV = {
public: undefined,
order: undefined,
vars: undefined,
housekeep: undefined,
swc: {
es: 'es2021',
jsx: '$er',
@ -57,15 +59,31 @@ const public = {
if(!Array.isArray(typeTasks))
throw 'children of the tasks object must be arrays';
console.info(`Building '${type}' assets...`);
const handler = types[type];
for(const task of typeTasks) {
console.info(` => ${task.source}...`);
const path = await handler.process(task, vars);
if(typeof task.varsName === 'string')
vars[task.varsGroup ?? ''][task.varsName] = path;
}
}
const hkDirs = env.housekeep ?? [];
if(!Array.isArray(hkDirs))
throw 'env.housekeep must be an array of folder paths';
if(hkDirs.length > 0) {
console.info(`Doing some housekeeping...`);
for(const path of hkDirs) {
console.info(` => ${path}...`);
housekeep(path);
}
}
},
};