UNPKG

@azure/static-web-apps-cli

Version:
36 lines 1.45 kB
import path from "node:path"; import { promises as fs, existsSync } from "node:fs"; import { logger } from "./utils/logger.js"; export async function isGitProject() { const gitFolder = path.join(process.cwd(), ".git"); return existsSync(gitFolder); } export async function updateGitIgnore(entry) { if (!entry) { return false; } if (!isGitProject()) { logger.silly(`Not a git project. Skip updating .gitignore`); return false; } const gitIgnoreFile = path.join(process.cwd(), ".gitignore"); const gitIgnoreFileExists = existsSync(gitIgnoreFile); if (!gitIgnoreFileExists) { logger.silly(`No .gitignore file found. Skip updating .gitignore`); return false; } const gitIgnoreFileContent = await fs.readFile(gitIgnoreFile, "utf8"); const gitIgnoreFileLines = gitIgnoreFileContent.length ? gitIgnoreFileContent.split("\n") : []; const gitIgnoreFileLinesBeforeUpdate = gitIgnoreFileLines.length; if (!gitIgnoreFileContent.includes(entry)) { logger.silly(`Adding entry to .gitignore`); gitIgnoreFileLines.push(entry); } const gitIgnoreFileContentWithProjectDetails = gitIgnoreFileLines.join("\n"); await fs.writeFile(gitIgnoreFile, gitIgnoreFileContentWithProjectDetails, "utf8"); if (gitIgnoreFileLinesBeforeUpdate < gitIgnoreFileLines.length) { return true; } return false; } //# sourceMappingURL=git.js.map