@axis-backstage/plugin-statuspage-common 0.5.0 → 0.7.0

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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,43 @@
1
+ # @axis-backstage/plugin-statuspage-common
2
+
3
+ ## 0.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 86c01b7: Bumped to Backstage 1.40
8
+
9
+ ## 0.6.0
10
+
11
+ ### Minor Changes
12
+
13
+ - ede8341: Updated to Backstage v1.36.1.
14
+
15
+ ## 0.5.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 6fd284d: Updated to Backstage v1.30.1.
20
+
21
+ ## 0.4.0
22
+
23
+ ### Minor Changes
24
+
25
+ - 0b948ea: Generate pluginIds for plugins and bumping @backstage/cli
26
+
27
+ ## 0.3.0
28
+
29
+ ### Minor Changes
30
+
31
+ - 916589b: Bumped Backstage to v.27.7 and removed the TechRadar plugin since it was not used and caused problems with the new version.
32
+
33
+ ## 0.2.1
34
+
35
+ ### Patch Changes
36
+
37
+ - 0535af4: Bumped backstage dependencies to match 1.26.0
38
+
39
+ ## 0.2.0
40
+
41
+ ### Minor Changes
42
+
43
+ - b445aaa: Initial Release of the Statuspage Plugin
@@ -0,0 +1,6 @@
1
+ 'use strict';
2
+
3
+ const STATUSPAGE_ANNOTATION = "statuspage.io/components";
4
+
5
+ exports.STATUSPAGE_ANNOTATION = STATUSPAGE_ANNOTATION;
6
+ //# sourceMappingURL=annotations.cjs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"annotations.cjs.js","sources":["../src/annotations.ts"],"sourcesContent":["/**\n * Annotation used by Entities that will embed statuspage.io components and\n * component groups.\n *\n * @public\n */\nexport const STATUSPAGE_ANNOTATION = 'statuspage.io/components';\n"],"names":[],"mappings":";;AAMO,MAAM,qBAAwB,GAAA;;;;"}
package/dist/index.cjs.js CHANGED
@@ -1,6 +1,8 @@
1
1
  'use strict';
2
2
 
3
- const STATUSPAGE_ANNOTATION = "statuspage.io/components";
3
+ var annotations = require('./annotations.cjs.js');
4
4
 
5
- exports.STATUSPAGE_ANNOTATION = STATUSPAGE_ANNOTATION;
5
+
6
+
7
+ exports.STATUSPAGE_ANNOTATION = annotations.STATUSPAGE_ANNOTATION;
6
8
  //# sourceMappingURL=index.cjs.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs.js","sources":["../src/annotations.ts"],"sourcesContent":["/**\n * Annotation used by Entities that will embed statuspage.io components and\n * component groups.\n *\n * @public\n */\nexport const STATUSPAGE_ANNOTATION = 'statuspage.io/components';\n"],"names":[],"mappings":";;AAMO,MAAM,qBAAwB,GAAA;;;;"}
1
+ {"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@axis-backstage/plugin-statuspage-common",
3
3
  "description": "Common functionalities for the statuspage plugin",
4
- "version": "0.5.0",
4
+ "version": "0.7.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -31,11 +31,18 @@
31
31
  "postpack": "backstage-cli package postpack"
32
32
  },
33
33
  "devDependencies": {
34
- "@backstage/cli": "^0.27.0"
34
+ "@backstage/cli": "^0.33.0"
35
35
  },
36
36
  "files": [
37
37
  "dist"
38
38
  ],
39
+ "typesVersions": {
40
+ "*": {
41
+ "package.json": [
42
+ "package.json"
43
+ ]
44
+ }
45
+ },
39
46
  "module": "dist/index.esm.js",
40
47
  "directory": "_release/package"
41
- }
48
+ }