Version Packages

This commit is contained in:
github-actions[bot]
2020-12-03 15:28:22 +00:00
parent b570f78e22
commit 01aa774d9a
111 changed files with 826 additions and 431 deletions
+26
View File
@@ -1,5 +1,31 @@
# @backstage/create-app
## 0.2.3
### Patch Changes
- 68fdc3a9f: Optimized the `yarn install` step in the backend `Dockerfile`.
To apply these changes to an existing app, make the following changes to `packages/backend/Dockerfile`:
Replace the `RUN yarn install ...` line with the following:
```bash
RUN yarn install --frozen-lockfile --production --network-timeout 300000 && rm -rf "$(yarn cache dir)"
```
- 4a655c89d: Removed `"resolutions"` entry for `esbuild` in the root `package.json` in order to use the version specified by `@backstage/cli`.
To apply this change to an existing app, remove the following from your root `package.json`:
```json
"resolutions": {
"esbuild": "0.6.3"
},
```
- ea475893d: Add [API docs plugin](https://github.com/backstage/backstage/tree/master/plugins/api-docs) to new apps being created through the CLI.
## 0.2.2
### Patch Changes
+19 -19
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/create-app",
"description": "Create app package for Backstage",
"version": "0.2.2",
"version": "0.2.3",
"private": false,
"publishConfig": {
"access": "public"
@@ -37,30 +37,30 @@
"recursive-readdir": "^2.2.2"
},
"devDependencies": {
"@backstage/backend-common": "^0.3.2",
"@backstage/catalog-model": "^0.3.1",
"@backstage/cli": "^0.3.2",
"@backstage/backend-common": "^0.3.3",
"@backstage/catalog-model": "^0.4.0",
"@backstage/cli": "^0.4.0",
"@backstage/config": "^0.1.1",
"@backstage/core": "^0.3.2",
"@backstage/plugin-api-docs": "^0.3.0",
"@backstage/plugin-app-backend": "^0.3.1",
"@backstage/plugin-auth-backend": "^0.2.4",
"@backstage/plugin-catalog": "^0.2.4",
"@backstage/plugin-catalog-backend": "^0.2.3",
"@backstage/plugin-circleci": "^0.2.2",
"@backstage/plugin-api-docs": "^0.3.1",
"@backstage/plugin-app-backend": "^0.3.2",
"@backstage/plugin-auth-backend": "^0.2.5",
"@backstage/plugin-catalog": "^0.2.5",
"@backstage/plugin-catalog-backend": "^0.3.0",
"@backstage/plugin-circleci": "^0.2.3",
"@backstage/plugin-explore": "^0.2.1",
"@backstage/plugin-github-actions": "^0.2.2",
"@backstage/plugin-lighthouse": "^0.2.3",
"@backstage/plugin-proxy-backend": "^0.2.1",
"@backstage/plugin-register-component": "^0.2.2",
"@backstage/plugin-github-actions": "^0.2.3",
"@backstage/plugin-lighthouse": "^0.2.4",
"@backstage/plugin-proxy-backend": "^0.2.2",
"@backstage/plugin-register-component": "^0.2.3",
"@backstage/plugin-rollbar-backend": "^0.1.4",
"@backstage/plugin-scaffolder": "^0.3.1",
"@backstage/plugin-scaffolder-backend": "^0.3.2",
"@backstage/plugin-scaffolder": "^0.3.2",
"@backstage/plugin-scaffolder-backend": "^0.3.3",
"@backstage/plugin-tech-radar": "^0.3.0",
"@backstage/plugin-techdocs": "^0.3.0",
"@backstage/plugin-techdocs-backend": "^0.3.0",
"@backstage/plugin-techdocs": "^0.3.1",
"@backstage/plugin-techdocs-backend": "^0.3.1",
"@backstage/plugin-user-settings": "^0.2.2",
"@backstage/test-utils": "^0.1.3",
"@backstage/test-utils": "^0.1.4",
"@backstage/theme": "^0.2.1",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^7.3.1",