@backstage/frontend-defaults 0.1.0-next.1 → 0.1.1-next.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/package.json +24 -24
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # @backstage/frontend-defaults
2
2
 
3
+ ## 0.1.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/frontend-plugin-api@0.9.0-next.0
9
+ - @backstage/frontend-app-api@0.10.0-next.0
10
+ - @backstage/plugin-app@0.1.1-next.0
11
+ - @backstage/config@1.2.0
12
+ - @backstage/errors@1.2.4
13
+
14
+ ## 0.1.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 7c80650: Initial release of this package, which provides a default app setup through the `createApp` function. This replaces the existing `createApp` method from `@backstage/frontend-app-api`.
19
+
20
+ ### Patch Changes
21
+
22
+ - 7d19cd5: Added a new `CreateAppOptions` type for the `createApp` options.
23
+ - 7d19cd5: Added `createPublicSignInApp`, used to creating apps for the public entry point.
24
+ - 836127c: Updated dependency `@testing-library/react` to `^16.0.0`.
25
+ - Updated dependencies
26
+ - @backstage/frontend-plugin-api@0.8.0
27
+ - @backstage/frontend-app-api@0.9.0
28
+ - @backstage/plugin-app@0.1.0
29
+ - @backstage/config@1.2.0
30
+ - @backstage/errors@1.2.4
31
+
3
32
  ## 0.1.0-next.1
4
33
 
5
34
  ### Patch Changes
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@backstage/frontend-defaults",
3
- "version": "0.1.0-next.1",
4
- "main": "dist/index.esm.js",
5
- "types": "dist/index.d.ts",
6
- "license": "Apache-2.0",
3
+ "version": "0.1.1-next.0",
4
+ "backstage": {
5
+ "role": "web-library"
6
+ },
7
7
  "publishConfig": {
8
8
  "access": "public",
9
9
  "main": "dist/index.esm.js",
@@ -14,38 +14,38 @@
14
14
  "url": "https://github.com/backstage/backstage",
15
15
  "directory": "packages/frontend-defaults"
16
16
  },
17
- "backstage": {
18
- "role": "web-library"
19
- },
17
+ "license": "Apache-2.0",
20
18
  "sideEffects": false,
19
+ "main": "dist/index.esm.js",
20
+ "types": "dist/index.d.ts",
21
+ "files": [
22
+ "dist"
23
+ ],
21
24
  "scripts": {
22
- "start": "backstage-cli package start",
23
25
  "build": "backstage-cli package build",
24
- "lint": "backstage-cli package lint",
25
- "test": "backstage-cli package test",
26
26
  "clean": "backstage-cli package clean",
27
+ "lint": "backstage-cli package lint",
27
28
  "prepack": "backstage-cli package prepack",
28
- "postpack": "backstage-cli package postpack"
29
- },
30
- "devDependencies": {
31
- "@backstage/cli": "^0.27.1-next.2",
32
- "@backstage/core-plugin-api": "^1.9.4-next.0",
33
- "@backstage/test-utils": "^1.6.0-next.1",
34
- "@testing-library/jest-dom": "^6.0.0",
35
- "@testing-library/react": "^16.0.0"
29
+ "postpack": "backstage-cli package postpack",
30
+ "start": "backstage-cli package start",
31
+ "test": "backstage-cli package test"
36
32
  },
37
- "files": [
38
- "dist"
39
- ],
40
33
  "dependencies": {
41
34
  "@backstage/config": "^1.2.0",
42
35
  "@backstage/errors": "^1.2.4",
43
- "@backstage/frontend-app-api": "^0.9.0-next.2",
44
- "@backstage/frontend-plugin-api": "^0.8.0-next.2",
45
- "@backstage/plugin-app": "^0.1.0-next.2",
36
+ "@backstage/frontend-app-api": "^0.10.0-next.0",
37
+ "@backstage/frontend-plugin-api": "^0.9.0-next.0",
38
+ "@backstage/plugin-app": "^0.1.1-next.0",
46
39
  "@react-hookz/web": "^24.0.0",
47
40
  "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0"
48
41
  },
42
+ "devDependencies": {
43
+ "@backstage/cli": "^0.28.0-next.0",
44
+ "@backstage/core-plugin-api": "^1.10.0-next.0",
45
+ "@backstage/test-utils": "^1.6.1-next.0",
46
+ "@testing-library/jest-dom": "^6.0.0",
47
+ "@testing-library/react": "^16.0.0"
48
+ },
49
49
  "peerDependencies": {
50
50
  "react": "^16.13.1 || ^17.0.0 || ^18.0.0"
51
51
  },