keep-a-changelog
Version:
Node package to parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.
21 lines • 701 B
TypeScript
import type { GlobOptions } from "../_common/glob_to_reg_exp.js";
export type { GlobOptions };
/**
* Like join(), but doesn't collapse "**\/.." when `globstar` is true.
*
* @example Usage
*
* ```ts
* import { joinGlobs } from "@std/path/windows/join-globs";
* import { assertEquals } from "@std/assert";
*
* const joined = joinGlobs(["foo", "**", "bar"], { globstar: true });
* assertEquals(joined, "foo\\**\\bar");
* ```
*
* @param globs The globs to join.
* @param options The options for glob pattern.
* @returns The joined glob pattern.
*/
export declare function joinGlobs(globs: string[], options?: Pick<GlobOptions, "globstar">): string;
//# sourceMappingURL=join_globs.d.ts.map