2024-01-06 05:25:07 +00:00
|
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
const log_1 = require("./log");
|
2024-01-06 05:27:34 +00:00
|
|
|
const templates_1 = require("./templates");
|
2024-01-06 05:25:07 +00:00
|
|
|
class Build {
|
|
|
|
constructor() {
|
|
|
|
this.log = (0, log_1.createLog)('build');
|
|
|
|
this.log.info(`Building site: ${new Date()}`);
|
2024-01-06 05:27:34 +00:00
|
|
|
this.tmpl = new templates_1.Templates();
|
|
|
|
this.main();
|
|
|
|
}
|
|
|
|
async main() {
|
|
|
|
this.tmpl.build();
|
2024-01-06 05:25:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
new Build();
|
|
|
|
//# sourceMappingURL=build.js.map
|