Merge pull request #9205 from backstage/rugvip/appdep

create-app: switch to using a file target for app dependency
This commit is contained in:
Johan Haals
2022-01-28 11:40:12 +01:00
committed by GitHub
4 changed files with 82 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
---
'@backstage/create-app': patch
---
Switched the `app` dependency in the backend to use a file target rather than version.
To apply this change to an existing app, make the following change to `packages/backend/package.json`:
```diff
"dependencies": {
- "app": "0.0.0",
+ "app": "file:../app",
```