Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
749 B
JavaScript
19 lines
749 B
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getCompiledPath = void 0;
|
|
var crypto_1 = __importDefault(require("crypto"));
|
|
var path_1 = __importDefault(require("path"));
|
|
var cwd = process.cwd();
|
|
exports.getCompiledPath = function (code, fileName, compiledDir) {
|
|
var hash = crypto_1.default
|
|
.createHash('sha256')
|
|
.update(fileName + code, 'utf8')
|
|
.digest('hex');
|
|
fileName = path_1.default.relative(cwd, fileName);
|
|
var hashed = fileName.replace(/[^\w]/g, '_') + '_' + hash + '.js';
|
|
return path_1.default.join(compiledDir, hashed);
|
|
};
|