@backstage/plugin-devtools-common 0.1.4-next.1 → 0.1.4

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 +19 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @backstage/plugin-devtools-common
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
8
+ - 12e644aa4eef: Show resource utilization in `DevTools` plugin
9
+ - Updated dependencies
10
+ - @backstage/plugin-permission-common@0.7.8
11
+ - @backstage/types@1.1.1
12
+
13
+ ## 0.1.4-next.2
14
+
15
+ ### Patch Changes
16
+
17
+ - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
18
+ - Updated dependencies
19
+ - @backstage/plugin-permission-common@0.7.8-next.2
20
+ - @backstage/types@1.1.1-next.0
21
+
3
22
  ## 0.1.4-next.1
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-devtools-common",
3
3
  "description": "Common functionalities for the devtools plugin",
4
- "version": "0.1.4-next.1",
4
+ "version": "0.1.4",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -20,6 +20,7 @@
20
20
  "url": "https://github.com/backstage/backstage",
21
21
  "directory": "plugins/devtools-common"
22
22
  },
23
+ "sideEffects": false,
23
24
  "scripts": {
24
25
  "build": "backstage-cli package build",
25
26
  "lint": "backstage-cli package lint",
@@ -29,11 +30,11 @@
29
30
  "postpack": "backstage-cli package postpack"
30
31
  },
31
32
  "dependencies": {
32
- "@backstage/plugin-permission-common": "^0.7.8-next.1",
33
- "@backstage/types": "^1.1.0"
33
+ "@backstage/plugin-permission-common": "^0.7.8",
34
+ "@backstage/types": "^1.1.1"
34
35
  },
35
36
  "devDependencies": {
36
- "@backstage/cli": "^0.22.13-next.2"
37
+ "@backstage/cli": "^0.22.13"
37
38
  },
38
39
  "files": [
39
40
  "dist"