@backstage/plugin-config-schema 0.1.45-next.2 → 0.1.45

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 +28 -0
  2. package/package.json +12 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @backstage/plugin-config-schema
2
2
 
3
+ ## 0.1.45
4
+
5
+ ### Patch Changes
6
+
7
+ - 482bb5c0bbf8: Moved `@types/react` to be a regular dependency
8
+ - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
9
+ - 8cec7664e146: Removed `@types/node` dependency
10
+ - Updated dependencies
11
+ - @backstage/core-components@0.13.5
12
+ - @backstage/config@1.1.0
13
+ - @backstage/core-plugin-api@1.6.0
14
+ - @backstage/errors@1.2.2
15
+ - @backstage/theme@0.4.2
16
+ - @backstage/types@1.1.1
17
+
18
+ ## 0.1.45-next.3
19
+
20
+ ### Patch Changes
21
+
22
+ - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
23
+ - Updated dependencies
24
+ - @backstage/config@1.1.0-next.2
25
+ - @backstage/core-components@0.13.5-next.3
26
+ - @backstage/core-plugin-api@1.6.0-next.3
27
+ - @backstage/errors@1.2.2-next.0
28
+ - @backstage/theme@0.4.2-next.0
29
+ - @backstage/types@1.1.1-next.0
30
+
3
31
  ## 0.1.45-next.2
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-config-schema",
3
3
  "description": "A Backstage plugin that lets you browse the configuration schema of your app",
4
- "version": "0.1.45-next.2",
4
+ "version": "0.1.45",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -19,6 +19,7 @@
19
19
  "url": "https://github.com/backstage/backstage",
20
20
  "directory": "plugins/config-schema"
21
21
  },
22
+ "sideEffects": false,
22
23
  "scripts": {
23
24
  "build": "backstage-cli package build",
24
25
  "start": "backstage-cli package start",
@@ -29,12 +30,12 @@
29
30
  "clean": "backstage-cli package clean"
30
31
  },
31
32
  "dependencies": {
32
- "@backstage/config": "^1.1.0-next.1",
33
- "@backstage/core-components": "^0.13.5-next.2",
34
- "@backstage/core-plugin-api": "^1.6.0-next.2",
35
- "@backstage/errors": "^1.2.1",
36
- "@backstage/theme": "^0.4.1",
37
- "@backstage/types": "^1.1.0",
33
+ "@backstage/config": "^1.1.0",
34
+ "@backstage/core-components": "^0.13.5",
35
+ "@backstage/core-plugin-api": "^1.6.0",
36
+ "@backstage/errors": "^1.2.2",
37
+ "@backstage/theme": "^0.4.2",
38
+ "@backstage/types": "^1.1.1",
38
39
  "@material-ui/core": "^4.12.2",
39
40
  "@material-ui/icons": "^4.9.1",
40
41
  "@material-ui/lab": "4.0.0-alpha.61",
@@ -49,10 +50,10 @@
49
50
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
50
51
  },
51
52
  "devDependencies": {
52
- "@backstage/cli": "^0.22.13-next.2",
53
- "@backstage/core-app-api": "^1.10.0-next.2",
54
- "@backstage/dev-utils": "^1.0.21-next.2",
55
- "@backstage/test-utils": "^1.4.3-next.2",
53
+ "@backstage/cli": "^0.22.13",
54
+ "@backstage/core-app-api": "^1.10.0",
55
+ "@backstage/dev-utils": "^1.0.21",
56
+ "@backstage/test-utils": "^1.4.3",
56
57
  "@testing-library/dom": "^8.0.0",
57
58
  "@testing-library/jest-dom": "^5.10.1",
58
59
  "@testing-library/react": "^12.1.3",