UNPKG

snapcube

Version:

📦 Snapshot, backup, and restore any project — binary-safe, fast, and simple CLI.

35 lines • 763 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BINARY_EXTS = exports.IGNORE_DIRS = void 0; /** * Directories that should always be ignored while scanning a project. * These are typically build outputs, dependency folders, or VCS data. */ const IGNORE_DIRS = [ "node_modules", ".git", ".next", "out", "dist", "__pycache__", "venv", "vender", ]; exports.IGNORE_DIRS = IGNORE_DIRS; /** * File extensions considered binary. * These will be encoded in base64 if included in snapshots. */ const BINARY_EXTS = [ ".png", ".jpg", ".jpeg", ".gif", ".webp", ".ico", ".svg", ".mp3", ".mp4", ]; exports.BINARY_EXTS = BINARY_EXTS; //# sourceMappingURL=config.js.map