@backstage/repo-tools 0.4.0-next.0 → 0.4.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 +17 -0
- package/dist/index.cjs.js +1 -1
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/repo-tools
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4e36abef14: Remove support for the deprecated `--experimental-type-build` option for `package build`.
|
|
8
|
+
- 6694b369a3: Adds a new command `schema openapi test` that performs runtime validation of your OpenAPI specs using your test data. Under the hood, we're using Optic to perform this check, really cool work by them!
|
|
9
|
+
|
|
10
|
+
To use this new command, you will have to run `yarn add @useoptic/optic` in the root of your repo.
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/cli-node@0.2.0
|
|
16
|
+
- @backstage/catalog-model@1.4.3
|
|
17
|
+
- @backstage/cli-common@0.1.13
|
|
18
|
+
- @backstage/errors@1.2.3
|
|
19
|
+
|
|
3
20
|
## 0.4.0-next.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/dist/index.cjs.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/repo-tools",
|
|
3
3
|
"description": "CLI for Backstage repo tooling ",
|
|
4
|
-
"version": "0.4.0
|
|
4
|
+
"version": "0.4.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@apisyouwonthate/style-guide": "^1.4.0",
|
|
35
35
|
"@backstage/catalog-model": "^1.4.3",
|
|
36
36
|
"@backstage/cli-common": "^0.1.13",
|
|
37
|
-
"@backstage/cli-node": "^0.2.0
|
|
37
|
+
"@backstage/cli-node": "^0.2.0",
|
|
38
38
|
"@backstage/errors": "^1.2.3",
|
|
39
39
|
"@manypkg/get-packages": "^1.1.3",
|
|
40
40
|
"@microsoft/api-documenter": "^7.22.33",
|
|
@@ -61,11 +61,12 @@
|
|
|
61
61
|
"yaml-diff-patch": "^2.0.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@backstage/cli": "^0.24.0
|
|
64
|
+
"@backstage/cli": "^0.24.0",
|
|
65
65
|
"@backstage/types": "^1.1.1",
|
|
66
66
|
"@types/is-glob": "^4.0.2",
|
|
67
67
|
"@types/mock-fs": "^4.13.0",
|
|
68
68
|
"@types/node": "^18.17.8",
|
|
69
|
+
"@types/prettier": "^2.0.0",
|
|
69
70
|
"mock-fs": "^5.2.0"
|
|
70
71
|
},
|
|
71
72
|
"peerDependencies": {
|