13 lines
497 B
TypeScript
13 lines
497 B
TypeScript
/**
|
|
* Shared constants for repertoire package manifest handling.
|
|
*/
|
|
|
|
/** Directory name for the repertoire packages dir (~/.takt/repertoire). */
|
|
export const REPERTOIRE_DIR_NAME = 'repertoire';
|
|
|
|
/** Manifest filename inside a package repository and installed package directory. */
|
|
export const TAKT_REPERTOIRE_MANIFEST_FILENAME = 'takt-repertoire.yaml';
|
|
|
|
/** Lock file filename inside an installed package directory. */
|
|
export const TAKT_REPERTOIRE_LOCK_FILENAME = '.takt-repertoire-lock.yaml';
|