mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
35 lines
886 B
JavaScript
35 lines
886 B
JavaScript
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
const packagePath = path.resolve(__dirname, "../package.json");
|
|
|
|
// Leer el archivo package.json
|
|
const pkg = JSON.parse(fs.readFileSync(packagePath, "utf-8"));
|
|
|
|
pkg.main = "./src/index.ts";
|
|
|
|
// Modificar los exports
|
|
pkg.exports = {
|
|
".": "./src/index.ts",
|
|
"./db": {
|
|
import: "./src/db/index.ts",
|
|
require: "./dist/db/index.cjs.js",
|
|
},
|
|
"./setup/*": {
|
|
import: "./src/setup/*.ts",
|
|
require: "./dist/setup/index.cjs.js",
|
|
},
|
|
"./constants": {
|
|
import: "./src/constants/index.ts",
|
|
require: "./dist/constants.cjs.js",
|
|
},
|
|
};
|
|
|
|
// Guardar los cambios en package.json
|
|
fs.writeFileSync(packagePath, JSON.stringify(pkg, null, 2));
|
|
console.log("Switched exports to use src for development");
|