Version Packages

This commit is contained in:
github-actions[bot]
2020-12-10 11:25:39 +00:00
parent 9fc45c33f0
commit cf187484bf
143 changed files with 1623 additions and 911 deletions
+34
View File
@@ -1,5 +1,39 @@
# @backstage/dev-utils
## 0.1.6
### Patch Changes
- b6557c098: Update ApiFactory type to correctly infer API type and disallow mismatched implementations.
This fixes for example the following code:
```ts
interface MyApi {
myMethod(): void
}
const myApiRef = createApiRef<MyApi>({...});
createApiFactory({
api: myApiRef,
deps: {},
// This should've caused an error, since the empty object does not fully implement MyApi
factory: () => ({}),
})
```
- e1f4e24ef: Fix @backstage/cli not being a devDependency
- Updated dependencies [2527628e1]
- Updated dependencies [e1f4e24ef]
- Updated dependencies [1c69d4716]
- Updated dependencies [1665ae8bb]
- Updated dependencies [04f26f88d]
- Updated dependencies [ff243ce96]
- @backstage/core@0.4.0
- @backstage/test-utils@0.1.5
- @backstage/theme@0.2.2
## 0.1.5
### Patch Changes
+5 -5
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/dev-utils",
"description": "Utilities for developing Backstage plugins.",
"version": "0.1.5",
"version": "0.1.6",
"private": false,
"publishConfig": {
"access": "public",
@@ -29,9 +29,9 @@
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/core": "^0.3.1",
"@backstage/test-utils": "^0.1.4",
"@backstage/theme": "^0.2.1",
"@backstage/core": "^0.4.0",
"@backstage/test-utils": "^0.1.5",
"@backstage/theme": "^0.2.2",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@testing-library/jest-dom": "^5.10.1",
@@ -45,7 +45,7 @@
"react-router-dom": "6.0.0-beta.0"
},
"devDependencies": {
"@backstage/cli": "^0.4.0",
"@backstage/cli": "^0.4.1",
"@types/jest": "^26.0.7",
"@types/node": "^12.0.0"
},