@backstage/plugin-scaffolder-backend-module-confluence-to-markdown 0.2.11-next.1 → 0.2.11-next.3
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 +26 -0
- package/README.md +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-confluence-to-markdown
|
|
2
2
|
|
|
3
|
+
## 0.2.11-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1cae748: Updated dependency `git-url-parse` to `^14.0.0`.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-common@0.21.0-next.3
|
|
10
|
+
- @backstage/integration@1.9.0-next.1
|
|
11
|
+
- @backstage/plugin-scaffolder-node@0.3.0-next.3
|
|
12
|
+
- @backstage/backend-plugin-api@0.6.10-next.3
|
|
13
|
+
- @backstage/config@1.1.1
|
|
14
|
+
- @backstage/errors@1.2.3
|
|
15
|
+
|
|
16
|
+
## 0.2.11-next.2
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- 9aac2b0: Use `--cwd` as the first `yarn` argument
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/backend-common@0.21.0-next.2
|
|
23
|
+
- @backstage/backend-plugin-api@0.6.10-next.2
|
|
24
|
+
- @backstage/plugin-scaffolder-node@0.3.0-next.2
|
|
25
|
+
- @backstage/config@1.1.1
|
|
26
|
+
- @backstage/errors@1.2.3
|
|
27
|
+
- @backstage/integration@1.9.0-next.0
|
|
28
|
+
|
|
3
29
|
## 0.2.11-next.1
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ From your Backstage root directory run:
|
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
# From your Backstage root directory
|
|
15
|
-
yarn
|
|
15
|
+
yarn --cwd packages/backend add @backstage/plugin-scaffolder-backend-module-confluence-to-markdown
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
Then configure the action:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-confluence-to-markdown",
|
|
3
3
|
"description": "The confluence-to-markdown module for @backstage/plugin-scaffolder-backend",
|
|
4
|
-
"version": "0.2.11-next.
|
|
4
|
+
"version": "0.2.11-next.3",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -36,21 +36,21 @@
|
|
|
36
36
|
"help": "backstage-cli help"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@backstage/backend-common": "^0.21.0-next.
|
|
40
|
-
"@backstage/backend-plugin-api": "^0.6.10-next.
|
|
39
|
+
"@backstage/backend-common": "^0.21.0-next.3",
|
|
40
|
+
"@backstage/backend-plugin-api": "^0.6.10-next.3",
|
|
41
41
|
"@backstage/config": "^1.1.1",
|
|
42
42
|
"@backstage/errors": "^1.2.3",
|
|
43
|
-
"@backstage/integration": "^1.9.0-next.
|
|
44
|
-
"@backstage/plugin-scaffolder-node": "^0.3.0-next.
|
|
43
|
+
"@backstage/integration": "^1.9.0-next.1",
|
|
44
|
+
"@backstage/plugin-scaffolder-node": "^0.3.0-next.3",
|
|
45
45
|
"fs-extra": "10.1.0",
|
|
46
|
-
"git-url-parse": "^
|
|
46
|
+
"git-url-parse": "^14.0.0",
|
|
47
47
|
"node-fetch": "^2.6.7",
|
|
48
48
|
"node-html-markdown": "^1.3.0",
|
|
49
49
|
"yaml": "^2.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@backstage/backend-test-utils": "^0.3.0-next.
|
|
53
|
-
"@backstage/cli": "^0.25.2-next.
|
|
52
|
+
"@backstage/backend-test-utils": "^0.3.0-next.3",
|
|
53
|
+
"@backstage/cli": "^0.25.2-next.3",
|
|
54
54
|
"msw": "^1.0.0"
|
|
55
55
|
},
|
|
56
56
|
"files": [
|