Merge pull request #4001 from backstage/freben/preparer-export

scaffolder-backend: export all preparers properly
This commit is contained in:
Fredrik Adelöw
2021-01-11 18:17:10 +01:00
committed by GitHub
3 changed files with 25 additions and 11 deletions
@@ -13,9 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './preparers';
export * from './types';
export * from './file';
export * from './github';
export * from './gitlab';
export * from './azure';
export { AzurePreparer } from './azure';
export { BitbucketPreparer } from './bitbucket';
export { FilePreparer } from './file';
export { GithubPreparer } from './github';
export { GitlabPreparer } from './gitlab';
export { Preparers } from './preparers';
export type { PreparerBase, PreparerBuilder, PreparerOptions } from './types';
@@ -13,8 +13,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './publishers';
export * from './github';
export * from './gitlab';
export * from './azure';
export * from './types';
export { AzurePublisher } from './azure';
export { BitbucketPublisher } from './bitbucket';
export { GithubPublisher } from './github';
export type { RepoVisibilityOptions } from './github';
export { GitlabPublisher } from './gitlab';
export { Publishers } from './publishers';
export type {
PublisherBase,
PublisherBuilder,
PublisherOptions,
PublisherResult,
} from './types';