mili
Version:
Scaffolding with continuous control over the development of the project.
9 lines (8 loc) • 485 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TEMPORARY_FILEPATH = exports.TEMPLATE_STORAGE_FILEPATH = exports.TEMPLATE_CACHE_FILEPATH = void 0;
const path = require("path");
const tempDir = require("temp-dir");
exports.TEMPLATE_CACHE_FILEPATH = path.join(tempDir, 'mili', 'template_cache');
exports.TEMPLATE_STORAGE_FILEPATH = path.join(tempDir, 'mili', 'template_storage');
exports.TEMPORARY_FILEPATH = path.join(tempDir, 'mili', 'temporary');