events-backend-module-gitlab: migrate to use exports

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-01-16 01:07:38 +01:00
parent 334baa32b0
commit ec7857e390
9 changed files with 57 additions and 19 deletions
@@ -0,0 +1,19 @@
## API Report File for "@backstage/plugin-events-backend-module-gitlab"
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { BackendFeature } from '@backstage/backend-plugin-api';
// Warning: (ae-unresolved-link) The @link reference could not be resolved: The package "@backstage/plugin-events-backend-module-gitlab" does not have an export "GitlabEventRouter"
//
// @alpha
export const gitlabEventRouterEventsModule: () => BackendFeature;
// Warning: (ae-unresolved-link) The @link reference could not be resolved: The package "@backstage/plugin-events-backend-module-gitlab" does not have an export "GitlabEventRouter"
//
// @alpha
export const gitlabWebhookEventsModule: () => BackendFeature;
// (No @packageDocumentation comment for this package)
```
@@ -3,7 +3,6 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { BackendFeature } from '@backstage/backend-plugin-api';
import { Config } from '@backstage/config';
import { EventParams } from '@backstage/plugin-events-node';
import { RequestValidator } from '@backstage/plugin-events-node';
@@ -18,10 +17,4 @@ export class GitlabEventRouter extends SubTopicEventRouter {
// (undocumented)
protected determineSubTopic(params: EventParams): string | undefined;
}
// @alpha
export const gitlabEventRouterEventsModule: () => BackendFeature;
// @alpha
export const gitlabWebhookEventsModule: () => BackendFeature;
```
@@ -5,17 +5,28 @@
"types": "src/index.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"alphaTypes": "dist/index.alpha.d.ts",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
"access": "public"
},
"exports": {
".": "./src/index.ts",
"./alpha": "./src/alpha.ts"
},
"typesVersions": {
"*": {
"*": [
"src/index.ts"
],
"alpha": [
"src/alpha.ts"
]
}
},
"backstage": {
"role": "backend-plugin-module"
},
"scripts": {
"start": "backstage-cli package start",
"build": "backstage-cli package build --experimental-type-build",
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
@@ -35,7 +46,6 @@
"supertest": "^6.1.3"
},
"files": [
"alpha",
"config.d.ts",
"dist"
],
@@ -0,0 +1,18 @@
/*
* Copyright 2023 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export { gitlabEventRouterEventsModule } from './service/GitlabEventRouterEventsModule';
export { gitlabWebhookEventsModule } from './service/GitlabWebhookEventsModule';
@@ -23,5 +23,3 @@
export { createGitlabTokenValidator } from './http/createGitlabTokenValidator';
export { GitlabEventRouter } from './router/GitlabEventRouter';
export { gitlabEventRouterEventsModule } from './service/GitlabEventRouterEventsModule';
export { gitlabWebhookEventsModule } from './service/GitlabWebhookEventsModule';
@@ -15,7 +15,7 @@
*/
import { startTestBackend } from '@backstage/backend-test-utils';
import { eventsExtensionPoint } from '@backstage/plugin-events-node';
import { eventsExtensionPoint } from '@backstage/plugin-events-node/alpha';
import { gitlabEventRouterEventsModule } from './GitlabEventRouterEventsModule';
import { GitlabEventRouter } from '../router/GitlabEventRouter';
@@ -15,7 +15,7 @@
*/
import { createBackendModule } from '@backstage/backend-plugin-api';
import { eventsExtensionPoint } from '@backstage/plugin-events-node';
import { eventsExtensionPoint } from '@backstage/plugin-events-node/alpha';
import { GitlabEventRouter } from '../router/GitlabEventRouter';
/**
@@ -17,8 +17,8 @@
import { coreServices } from '@backstage/backend-plugin-api';
import { startTestBackend } from '@backstage/backend-test-utils';
import { ConfigReader } from '@backstage/config';
import { eventsExtensionPoint } from '@backstage/plugin-events-node/alpha';
import {
eventsExtensionPoint,
HttpPostIngressOptions,
RequestDetails,
} from '@backstage/plugin-events-node';
@@ -18,7 +18,7 @@ import {
coreServices,
createBackendModule,
} from '@backstage/backend-plugin-api';
import { eventsExtensionPoint } from '@backstage/plugin-events-node';
import { eventsExtensionPoint } from '@backstage/plugin-events-node/alpha';
import { createGitlabTokenValidator } from '../http/createGitlabTokenValidator';
/**