This repository has been archived on 2026-05-02. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
obsidian-plugin-auto-task-s.../scripts/install-to-vault.ts
Felipe Martin 6c464483f5
Some checks are pending
CI / build (push) Waiting to run
Migrate dev environment to Bun with modern tooling
- Switch package manager from npm to Bun (bun.lock replaces package-lock.json)
- Move source to src/main.ts, tests to test/ (flattened structure)
- Build output now goes to dist/ with git-based version stamping in manifest
- Replace ESLint legacy config with ESLint v9 flat config (typescript-eslint v8)
- Add Prettier for formatting (.prettierrc)
- Add Husky pre-commit hook running bun run lint
- Add vault management scripts (install, uninstall, symlink, unlink)
- Add GitHub Actions CI and release workflows
- Update tsconfig for TypeScript v5, add isolatedModules/esModuleInterop
- Upgrade Jest config to jsdom environment, coverage from src/**
- Remove Makefile, version-bump.mjs, versions.json (replaced by bun scripts and git-tag versioning)
2026-04-13 15:09:11 +02:00

45 lines
1.3 KiB
TypeScript

import { existsSync, mkdirSync, cpSync, lstatSync } from 'fs';
import { resolve } from 'path';
const manifest = await Bun.file('manifest.json').json();
const pluginId: string = manifest.id;
const vaultPath = process.argv[2] || process.env.OBSIDIAN_VAULT;
if (!vaultPath) {
console.error(
'Usage: bun run scripts/install-to-vault.ts <vault-path>\n' + ' or set OBSIDIAN_VAULT environment variable',
);
process.exit(1);
}
const resolvedVault = resolve(vaultPath);
const obsidianDir = resolve(resolvedVault, '.obsidian');
const pluginsDir = resolve(obsidianDir, 'plugins');
const targetDir = resolve(pluginsDir, pluginId);
const distDir = resolve(import.meta.dir, '..', 'dist');
// Validation checks
if (!existsSync(obsidianDir)) {
console.error(`Invalid vault path: ${resolvedVault}`);
console.error(`.obsidian directory not found at ${obsidianDir}`);
process.exit(1);
}
if (!existsSync(distDir)) {
console.error(`Build not found: run 'bun run build' first`);
process.exit(1);
}
if (existsSync(targetDir) && lstatSync(targetDir).isSymbolicLink()) {
console.error(`${targetDir} is a symlink. Use 'vault:install-symlink' instead.`);
process.exit(1);
}
// Install
if (!existsSync(pluginsDir)) {
mkdirSync(pluginsDir, { recursive: true });
}
cpSync(distDir, targetDir, { recursive: true });
console.log(`Installed to: ${targetDir}`);