Misc tools for dealing with repositories of multiple version control systems (git, svn, etc)
npm install @altano/repository-tools !Typed with TypeScript !ESM only
Misc tools for dealing with repositories of multiple version control systems
- git
- mercurial
- sapling
- subversion
Given a path inside a repository, find the path of the root
Example:
``ts`
findRootSync("/my-git-repo/some/subdirectory"); // => "/my-git-repo"
Example:
`ts`
await findRoot("/my-git-repo/some/subdirectory"); // => "/my-git-repo"
NOTE: As of v1.0.0 this is an ESM-only module package. It can be imported as an ESM module from any Node.js version but if requiring this package from a CJS package, you must use Node.js v20.19.0+ or v22.12.0+. If you get a ERR_REQUIRE_ESM error when calling require("@altano/repository-tools") make sure you're on a new enough version of Node.js.
You may import all the tools, or import functions directly:
| Using sub-path exports | Import to use |
| ---------------------- | ------------------------------------------------------------------ |
| No | import { findRoot } from "@altano/repository-tools"; |import { findRoot } from "@altano/repository-tools/findRoot.js";` |
| Yes |