Rename project to Archivox

This commit is contained in:
thePR0M3TH3AN
2025-07-10 14:53:51 -04:00
parent a606479726
commit 785eda8cae
18 changed files with 41 additions and 41 deletions

View File

@@ -29,8 +29,8 @@ function main() {
if (fs.existsSync(pkgPath)) {
const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf8'));
const version = require('../package.json').version;
if (pkg.dependencies && pkg.dependencies.docforge)
pkg.dependencies.docforge = `^${version}`;
if (pkg.dependencies && pkg.dependencies.archivox)
pkg.dependencies.archivox = `^${version}`;
pkg.name = path.basename(targetDir);
fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2));
}
@@ -39,7 +39,7 @@ function main() {
execSync('npm install', { cwd: targetDir, stdio: 'inherit' });
}
console.log(`DocForge starter created at ${targetDir}`);
console.log(`Archivox starter created at ${targetDir}`);
}
main();