Bump .backstage.json version

Signed-off-by: Vincenzo Scamporlino <me@vinzscam.dev>
This commit is contained in:
Vincenzo Scamporlino
2021-11-10 23:51:42 +01:00
parent 085edcfc5f
commit b6b4d4b73f
7 changed files with 121 additions and 8 deletions
+5
View File
@@ -3,6 +3,11 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
// Warning: (ae-missing-release-tag) "BACKSTAGE_JSON" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public
export const BACKSTAGE_JSON = '.backstage.json';
// @public
export function findPaths(searchDir: string): Paths;
+1 -1
View File
@@ -20,6 +20,6 @@
* @packageDocumentation
*/
export { findPaths } from './paths';
export { findPaths, BACKSTAGE_JSON } from './paths';
export { isChildPath } from './isChildPath';
export type { Paths, ResolveFunc } from './paths';
+5
View File
@@ -167,3 +167,8 @@ export function findPaths(searchDir: string): Paths {
resolveTargetRoot: (...paths) => resolvePath(getTargetRoot(), ...paths),
};
}
/**
* The name of the backstage's config file
*/
export const BACKSTAGE_JSON = '.backstage.json';