1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-15 15:10:08 +00:00

feat: add CLI command for importing and exporting Pocket ID data (#998)

Co-authored-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Elias Schneider
2025-11-26 10:38:15 +01:00
committed by GitHub
parent e306d6eb58
commit 39c1f93756
56 changed files with 3276 additions and 823 deletions

8
tests/specs/fixtures/global.setup.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import fs from 'fs';
import { tmpDir } from 'utils/fs.util';
async function globalSetup() {
await fs.promises.mkdir(tmpDir, { recursive: true });
}
export default globalSetup;