"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const log_1 = require("./log"); class Build { constructor() { this.log = (0, log_1.createLog)('build'); this.log.info(`Building site: ${new Date()}`); } } new Build(); //# sourceMappingURL=build.js.map