Refactor FdsConfig init; update copy task and assets

- FdsConfig.Initialize now accepts IConfiguration for DI support; Program.cs updated to pass builder.Configuration.
- Gulp "copy" task logs copied files for better feedback.
- Bank statement file input now accepts all file types.
- Updated glyphicon font binary assets.
This commit is contained in:
2026-06-09 11:31:31 +02:00
parent 7653b2f0b5
commit ae5c90b915
8 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -147,7 +147,7 @@ gulp.task("copy", async () => {
const jobs = [];
for (const cpy of copyconfig) {
jobs.push(
pipeline(gulp.src(cpy.src, { allowEmpty: true }), gulp.dest(cpy.dest), preservetimeSafe())
pipeline(gulp.src(cpy.src, { allowEmpty: true }), gulp.dest(cpy.dest), preservetimeSafe(), logSink("Copied: "))
);
}
await Promise.all(jobs);