@backstage-community/plugin-scaffolder-backend-module-annotator 2.2.3 → 2.3.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 +6 -0
- package/dist/index.d.ts +3 -2
- package/package.json +12 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## @janus-idp/backstage-scaffolder-backend-module-annotator [1.3.0](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/backstage-scaffolder-backend-module-annotator@1.2.1...@janus-idp/backstage-scaffolder-backend-module-annotator@1.3.0) (2024-07-25)
|
|
2
2
|
|
|
3
|
+
## 2.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- bb9a4f7: Backstage version bump to v1.34.2
|
|
8
|
+
|
|
3
9
|
## 2.2.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as _backstage_plugin_scaffolder_node from '@backstage/plugin-scaffolder-node';
|
|
2
2
|
import * as _backstage_types_index from '@backstage/types/index';
|
|
3
|
+
import * as _backstage_plugin_scaffolder_node_index from '@backstage/plugin-scaffolder-node/index';
|
|
3
4
|
import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
4
5
|
|
|
5
6
|
type Value = string | {
|
|
@@ -37,7 +38,7 @@ declare const createAnnotatorAction: (actionId?: string, actionDescription?: str
|
|
|
37
38
|
writeToFile?: string | undefined;
|
|
38
39
|
}, _backstage_types_index.JsonObject>;
|
|
39
40
|
|
|
40
|
-
declare const createTimestampAction: () =>
|
|
41
|
+
declare const createTimestampAction: () => _backstage_plugin_scaffolder_node_index.TemplateAction<{
|
|
41
42
|
labels?: {
|
|
42
43
|
[key: string]: string;
|
|
43
44
|
} | undefined;
|
|
@@ -54,7 +55,7 @@ declare const createTimestampAction: () => _backstage_plugin_scaffolder_node.Tem
|
|
|
54
55
|
writeToFile?: string | undefined;
|
|
55
56
|
}, _backstage_types_index.JsonObject>;
|
|
56
57
|
|
|
57
|
-
declare const createScaffoldedFromAction: () =>
|
|
58
|
+
declare const createScaffoldedFromAction: () => _backstage_plugin_scaffolder_node_index.TemplateAction<{
|
|
58
59
|
labels?: {
|
|
59
60
|
[key: string]: string;
|
|
60
61
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-scaffolder-backend-module-annotator",
|
|
3
3
|
"description": "The annotator module for @backstage/plugin-scaffolder-backend",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.3.0",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -23,6 +23,13 @@
|
|
|
23
23
|
},
|
|
24
24
|
"./package.json": "./package.json"
|
|
25
25
|
},
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"*": {
|
|
28
|
+
"index": [
|
|
29
|
+
"dist/index.d.ts"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
26
33
|
"scripts": {
|
|
27
34
|
"start": "backstage-cli package start",
|
|
28
35
|
"build": "backstage-cli package build",
|
|
@@ -38,15 +45,15 @@
|
|
|
38
45
|
"prettier:fix": "prettier --ignore-unknown --write ."
|
|
39
46
|
},
|
|
40
47
|
"dependencies": {
|
|
41
|
-
"@backstage/backend-plugin-api": "^1.0
|
|
42
|
-
"@backstage/plugin-scaffolder-node": "^0.
|
|
48
|
+
"@backstage/backend-plugin-api": "^1.1.0",
|
|
49
|
+
"@backstage/plugin-scaffolder-node": "^0.6.2",
|
|
43
50
|
"fs-extra": "^11.2.0",
|
|
44
51
|
"lodash": "^4.17.21",
|
|
45
52
|
"yaml": "^2.0.0"
|
|
46
53
|
},
|
|
47
54
|
"devDependencies": {
|
|
48
|
-
"@backstage/backend-test-utils": "1.0
|
|
49
|
-
"@backstage/cli": "0.
|
|
55
|
+
"@backstage/backend-test-utils": "^1.2.0",
|
|
56
|
+
"@backstage/cli": "^0.29.4",
|
|
50
57
|
"@types/fs-extra": "^11.0.4",
|
|
51
58
|
"@types/lodash": "^4.17.13",
|
|
52
59
|
"prettier": "3.4.2"
|