-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add dynamic wrapper for nexus-repository-manager plugin (#1738)
* add dynamic wrapper for nexus-repository-manager plugin Signed-off-by: Jessica He <[email protected]> * Update dynamic-plugins/wrappers/backstage-community-plugin-nexus-repository-manager/src/index.ts Co-authored-by: Paul Schultz <[email protected]> * Update dynamic-plugins/wrappers/backstage-community-plugin-nexus-repository-manager/package.json --------- Signed-off-by: Jessica He <[email protected]> Co-authored-by: Paul Schultz <[email protected]>
- Loading branch information
1 parent
d55db49
commit 7056603
Showing
9 changed files
with
248 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
dynamic-plugins/wrappers/backstage-community-plugin-nexus-repository-manager/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"name": "backstage-community-plugin-nexus-repository-manager", | ||
"version": "1.10.1", | ||
"main": "src/index.ts", | ||
"types": "src/index.ts", | ||
"license": "Apache-2.0", | ||
"publishConfig": { | ||
"access": "public", | ||
"main": "dist/index.cjs.js", | ||
"types": "dist/index.d.ts" | ||
}, | ||
"backstage": { | ||
"role": "frontend-plugin", | ||
"supported-versions": "1.29.2", | ||
"pluginId": "nexus-repository-manager", | ||
"pluginPackages": [ | ||
"backstage-community-plugin-nexus-repository-manager" | ||
] | ||
}, | ||
"sideEffects": false, | ||
"scripts": { | ||
"tsc": "tsc", | ||
"build": "backstage-cli package build", | ||
"lint": "backstage-cli package lint", | ||
"test": "backstage-cli package test --passWithNoTests --coverage", | ||
"clean": "backstage-cli package clean", | ||
"export-dynamic": "janus-cli package export-dynamic-plugin --in-place" | ||
}, | ||
"dependencies": { | ||
"@backstage-community/plugin-nexus-repository-manager": "1.10.1" | ||
}, | ||
"devDependencies": { | ||
"@backstage/cli": "0.26.11", | ||
"@janus-idp/cli": "1.14.0" | ||
}, | ||
"files": [ | ||
"dist", | ||
"dist-scalprum" | ||
], | ||
"scalprum": { | ||
"name": "backstage-community.plugin-nexus-repository-manager", | ||
"exposedModules": { | ||
"PluginRoot": "./src/index.ts" | ||
} | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/janus-idp/backstage-showcase", | ||
"directory": "dynamic-plugins/wrappers/backstage-community-plugin-nexus-repository-manager" | ||
}, | ||
"maintainers": [ | ||
"@janus-idp/maintainers-showcase" | ||
], | ||
"author": "Red Hat", | ||
"homepage": "https://red.ht/rhdh", | ||
"bugs": "https://issues.redhat.com/browse/RHIDP", | ||
"keywords": [ | ||
"support:tech-preview", | ||
"lifecycle:active" | ||
] | ||
} |
1 change: 1 addition & 0 deletions
1
dynamic-plugins/wrappers/backstage-community-plugin-nexus-repository-manager/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from '@backstage-community/plugin-nexus-repository-manager'; |
9 changes: 9 additions & 0 deletions
9
dynamic-plugins/wrappers/backstage-community-plugin-nexus-repository-manager/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "@backstage/cli/config/tsconfig.json", | ||
"include": ["src", "dev", "migrations"], | ||
"exclude": ["node_modules"], | ||
"compilerOptions": { | ||
"outDir": "../../../dist-types/dynamic-plugins/wrappers/backstage-community-plugin-nexus-repository-manager", | ||
"rootDir": "." | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
dynamic-plugins/wrappers/backstage-community-plugin-nexus-repository-manager/turbo.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"extends": ["//"], | ||
"tasks": { | ||
"tsc": { | ||
"outputs": [ | ||
"../../../dist-types/dynamic-plugins/wrappers/backstage-community-plugin-nexus-repository-manager/**" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.