Merge branch 'master' of github.com:spotify/backstage into mob/union-types
* 'master' of github.com:spotify/backstage: Update quickstart-app-auth.md Update changelog v0.1.1-alpha.22 v0.1.1-alpha.21 TechDocs: Use a flag to determine if we should use a local mkdocs or techdocs-container (#2503) feat(catalog-backend): delete log entries older than a cutoff fix(workflows): do not run e2e when contrib or docs change chore(contrib): form the basic contrib hierarchy fix(catalog-backend): address comments and add docs fix(catalog-backend): unify github and github/api, and use git-url-parse
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "example-backend",
|
||||
"version": "0.1.1-alpha.21",
|
||||
"version": "0.1.1-alpha.22",
|
||||
"main": "dist/index.cjs.js",
|
||||
"types": "src/index.ts",
|
||||
"private": true,
|
||||
@@ -18,23 +18,23 @@
|
||||
"migrate:create": "knex migrate:make -x ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/backend-common": "^0.1.1-alpha.21",
|
||||
"@backstage/catalog-model": "^0.1.1-alpha.21",
|
||||
"@backstage/config": "^0.1.1-alpha.21",
|
||||
"@backstage/plugin-app-backend": "^0.1.1-alpha.21",
|
||||
"@backstage/plugin-auth-backend": "^0.1.1-alpha.21",
|
||||
"@backstage/plugin-catalog-backend": "^0.1.1-alpha.21",
|
||||
"@backstage/plugin-graphql-backend": "^0.1.1-alpha.21",
|
||||
"@backstage/plugin-identity-backend": "^0.1.1-alpha.21",
|
||||
"@backstage/plugin-proxy-backend": "^0.1.1-alpha.21",
|
||||
"@backstage/plugin-rollbar-backend": "^0.1.1-alpha.21",
|
||||
"@backstage/plugin-scaffolder-backend": "^0.1.1-alpha.21",
|
||||
"@backstage/plugin-sentry-backend": "^0.1.1-alpha.21",
|
||||
"@backstage/plugin-techdocs-backend": "^0.1.1-alpha.21",
|
||||
"@backstage/backend-common": "^0.1.1-alpha.22",
|
||||
"@backstage/catalog-model": "^0.1.1-alpha.22",
|
||||
"@backstage/config": "^0.1.1-alpha.22",
|
||||
"@backstage/plugin-app-backend": "^0.1.1-alpha.22",
|
||||
"@backstage/plugin-auth-backend": "^0.1.1-alpha.22",
|
||||
"@backstage/plugin-catalog-backend": "^0.1.1-alpha.22",
|
||||
"@backstage/plugin-graphql-backend": "^0.1.1-alpha.22",
|
||||
"@backstage/plugin-identity-backend": "^0.1.1-alpha.22",
|
||||
"@backstage/plugin-proxy-backend": "^0.1.1-alpha.22",
|
||||
"@backstage/plugin-rollbar-backend": "^0.1.1-alpha.22",
|
||||
"@backstage/plugin-scaffolder-backend": "^0.1.1-alpha.22",
|
||||
"@backstage/plugin-sentry-backend": "^0.1.1-alpha.22",
|
||||
"@backstage/plugin-techdocs-backend": "^0.1.1-alpha.22",
|
||||
"@gitbeaker/node": "^23.5.0",
|
||||
"@octokit/rest": "^18.0.0",
|
||||
"dockerode": "^3.2.0",
|
||||
"example-app": "^0.1.1-alpha.21",
|
||||
"example-app": "^0.1.1-alpha.22",
|
||||
"express": "^4.17.1",
|
||||
"knex": "^0.21.1",
|
||||
"pg": "^8.3.0",
|
||||
@@ -43,7 +43,7 @@
|
||||
"winston": "^3.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.1.1-alpha.21",
|
||||
"@backstage/cli": "^0.1.1-alpha.22",
|
||||
"@types/dockerode": "^2.5.32",
|
||||
"@types/express": "^4.17.6",
|
||||
"@types/express-serve-static-core": "^4.17.5",
|
||||
|
||||
@@ -31,7 +31,7 @@ export default async function createPlugin({
|
||||
config,
|
||||
}: PluginEnvironment) {
|
||||
const generators = new Generators();
|
||||
const techdocsGenerator = new TechdocsGenerator(logger);
|
||||
const techdocsGenerator = new TechdocsGenerator(logger, config);
|
||||
generators.register('techdocs', techdocsGenerator);
|
||||
|
||||
const preparers = new Preparers();
|
||||
|
||||
Reference in New Issue
Block a user