mirror of
https://github.com/jimeh/commonflow.org.git
synced 2026-02-19 05:46:40 +00:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
export const config = {
|
|
title: "Git Common-Flow",
|
|
description:
|
|
"An attempt to gather a sensible selection of the most common usage " +
|
|
"patterns of git into a single and concise specification.",
|
|
author: "Jim Myhrberg",
|
|
authorUrl: "https://jimeh.me/",
|
|
hostname: "commonflow.org",
|
|
url: "https://commonflow.org",
|
|
repoUrl: "https://github.com/jimeh/common-flow",
|
|
license: {
|
|
name: "CC BY 4.0",
|
|
url: "https://creativecommons.org/licenses/by/4.0/",
|
|
},
|
|
|
|
// Optional override for current version (null = auto-detect from specs)
|
|
currentVersionOverride: null as string | null,
|
|
|
|
// Used by update script
|
|
update: {
|
|
repository: "jimeh/common-flow",
|
|
urlTemplate:
|
|
"https://github.com/jimeh/common-flow/raw/{{version}}/{{file}}",
|
|
files: {
|
|
document: "common-flow.md",
|
|
diagram: "common-flow.svg",
|
|
},
|
|
// Version discovery settings
|
|
discovery: {
|
|
// Prerelease types to include (stable versions are always included)
|
|
includePrereleaseTypes: ["rc"] as string[],
|
|
// Explicit versions to exclude
|
|
excludeVersions: [] as string[],
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export type Config = typeof config;
|