@backstage-community/plugin-gocd 0.1.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ export { a as GOCD_PIPELINES_ANNOTATION, G as GoCdBuildsComponent, i as isGoCdAvailable } from './index-AZ5ua7UM.esm.js';
2
+ import '@backstage/errors';
3
+ import '@backstage/core-plugin-api';
4
+ import 'react';
5
+ import '@backstage/plugin-catalog-react';
6
+ import '@backstage/core-components';
7
+ import 'react-use/esm/useAsync';
8
+ import '@backstage/catalog-model';
9
+ import '@material-ui/lab/Alert';
10
+ import '@material-ui/core/Button';
11
+ import '@material-ui/icons/GitHub';
12
+ import 'luxon';
13
+ import 'lodash';
14
+ import '@material-ui/core/Box';
15
+ import '@material-ui/core/Grid';
16
+ import '@material-ui/core/Card';
17
+ import '@material-ui/core/CardContent';
18
+ import '@material-ui/core/Tooltip';
19
+ import '@material-ui/core/Typography';
20
+ import '@material-ui/core/FormControl';
21
+ import '@material-ui/core/InputLabel';
22
+ import '@material-ui/core/MenuItem';
23
+ import '@material-ui/core/Select';
24
+ import '@material-ui/core/styles';
25
+ //# sourceMappingURL=index-CA4IGciN.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index-CA4IGciN.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,32 @@
1
+ /// <reference types="react" />
2
+ import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
3
+ import { Entity } from '@backstage/catalog-model';
4
+
5
+ /**
6
+ * Plugin definition.
7
+ *
8
+ * @public
9
+ */
10
+ declare const gocdPlugin: _backstage_core_plugin_api.BackstagePlugin<{}, {}, {}>;
11
+
12
+ /**
13
+ * GoCD builds table component.
14
+ *
15
+ * @public
16
+ */
17
+ declare const EntityGoCdContent: () => JSX.Element;
18
+
19
+ /**
20
+ * Constant storing GoCD pipelines annotation.
21
+ *
22
+ * @public
23
+ */
24
+ declare const GOCD_PIPELINES_ANNOTATION = "gocd.org/pipelines";
25
+ /**
26
+ * Returns true if GoCD annotation is present in the given entity.
27
+ *
28
+ * @public
29
+ */
30
+ declare const isGoCdAvailable: (entity: Entity) => boolean;
31
+
32
+ export { EntityGoCdContent, GOCD_PIPELINES_ANNOTATION, gocdPlugin, isGoCdAvailable };
@@ -0,0 +1,25 @@
1
+ export { E as EntityGoCdContent, a as GOCD_PIPELINES_ANNOTATION, g as gocdPlugin, i as isGoCdAvailable } from './esm/index-AZ5ua7UM.esm.js';
2
+ import '@backstage/errors';
3
+ import '@backstage/core-plugin-api';
4
+ import 'react';
5
+ import '@backstage/plugin-catalog-react';
6
+ import '@backstage/core-components';
7
+ import 'react-use/esm/useAsync';
8
+ import '@backstage/catalog-model';
9
+ import '@material-ui/lab/Alert';
10
+ import '@material-ui/core/Button';
11
+ import '@material-ui/icons/GitHub';
12
+ import 'luxon';
13
+ import 'lodash';
14
+ import '@material-ui/core/Box';
15
+ import '@material-ui/core/Grid';
16
+ import '@material-ui/core/Card';
17
+ import '@material-ui/core/CardContent';
18
+ import '@material-ui/core/Tooltip';
19
+ import '@material-ui/core/Typography';
20
+ import '@material-ui/core/FormControl';
21
+ import '@material-ui/core/InputLabel';
22
+ import '@material-ui/core/MenuItem';
23
+ import '@material-ui/core/Select';
24
+ import '@material-ui/core/styles';
25
+ //# sourceMappingURL=index.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;"}
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@backstage-community/plugin-gocd",
3
+ "version": "0.1.41",
4
+ "description": "A Backstage plugin that integrates towards GoCD",
5
+ "backstage": {
6
+ "role": "frontend-plugin"
7
+ },
8
+ "publishConfig": {
9
+ "access": "public",
10
+ "main": "dist/index.esm.js",
11
+ "types": "dist/index.d.ts"
12
+ },
13
+ "homepage": "https://backstage.io",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/backstage/community-plugins",
17
+ "directory": "workspaces/gocd/plugins/gocd"
18
+ },
19
+ "license": "Apache-2.0",
20
+ "sideEffects": false,
21
+ "main": "dist/index.esm.js",
22
+ "types": "dist/index.d.ts",
23
+ "files": [
24
+ "dist",
25
+ "config.d.ts"
26
+ ],
27
+ "scripts": {
28
+ "build": "backstage-cli package build",
29
+ "clean": "backstage-cli package clean",
30
+ "lint": "backstage-cli package lint",
31
+ "prepack": "backstage-cli package prepack",
32
+ "postpack": "backstage-cli package postpack",
33
+ "start": "backstage-cli package start",
34
+ "test": "backstage-cli package test"
35
+ },
36
+ "dependencies": {
37
+ "@backstage/catalog-model": "^1.4.5",
38
+ "@backstage/core-components": "^0.14.4",
39
+ "@backstage/core-plugin-api": "^1.9.2",
40
+ "@backstage/errors": "^1.2.4",
41
+ "@backstage/plugin-catalog-react": "^1.11.3",
42
+ "@material-ui/core": "^4.12.2",
43
+ "@material-ui/icons": "^4.9.1",
44
+ "@material-ui/lab": "4.0.0-alpha.61",
45
+ "lodash": "^4.17.21",
46
+ "luxon": "^3.0.0",
47
+ "qs": "^6.10.1",
48
+ "react-use": "^17.2.4"
49
+ },
50
+ "devDependencies": {
51
+ "@backstage/cli": "^0.26.3",
52
+ "@backstage/core-app-api": "^1.12.4",
53
+ "@backstage/dev-utils": "^1.0.31",
54
+ "@backstage/test-utils": "^1.5.4",
55
+ "@testing-library/dom": "^10.0.0",
56
+ "@testing-library/jest-dom": "^6.0.0",
57
+ "@testing-library/react": "^15.0.0",
58
+ "@testing-library/user-event": "^14.0.0",
59
+ "@types/lodash": "^4.14.173",
60
+ "@types/luxon": "^3.0.0",
61
+ "@types/react": "^16.13.1 || ^17.0.0",
62
+ "@types/react-dom": "^18.2.19",
63
+ "canvas": "^2.11.2",
64
+ "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
65
+ "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
66
+ "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
67
+ },
68
+ "peerDependencies": {
69
+ "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
70
+ "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
71
+ "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
72
+ },
73
+ "configSchema": "config.d.ts",
74
+ "module": "./dist/index.esm.js"
75
+ }