@backstage/plugin-techdocs-react 1.1.16-next.2 → 1.1.17-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 +24 -0
  2. package/package.json +27 -27
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @backstage/plugin-techdocs-react
2
2
 
3
+ ## 1.1.17-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-components@0.14.1-next.0
9
+ - @backstage/catalog-model@1.4.5-next.0
10
+ - @backstage/config@1.1.2-next.0
11
+ - @backstage/core-plugin-api@1.9.1-next.0
12
+ - @backstage/version-bridge@1.0.7
13
+
14
+ ## 1.1.16
15
+
16
+ ### Patch Changes
17
+
18
+ - 9aac2b0: Use `--cwd` as the first `yarn` argument
19
+ - 8fe56a8: Widen `@types/react` dependency range to include version 18.
20
+ - Updated dependencies
21
+ - @backstage/core-components@0.14.0
22
+ - @backstage/catalog-model@1.4.4
23
+ - @backstage/core-plugin-api@1.9.0
24
+ - @backstage/config@1.1.1
25
+ - @backstage/version-bridge@1.0.7
26
+
3
27
  ## 1.1.16-next.2
4
28
 
5
29
  ### Patch Changes
package/package.json CHANGED
@@ -1,43 +1,47 @@
1
1
  {
2
2
  "name": "@backstage/plugin-techdocs-react",
3
+ "version": "1.1.17-next.0",
3
4
  "description": "Shared frontend utilities for TechDocs and Addons",
4
- "version": "1.1.16-next.2",
5
+ "backstage": {
6
+ "role": "web-library"
7
+ },
5
8
  "publishConfig": {
6
9
  "access": "public",
7
10
  "main": "dist/index.esm.js",
8
11
  "types": "dist/index.d.ts"
9
12
  },
10
- "backstage": {
11
- "role": "web-library"
12
- },
13
+ "keywords": [
14
+ "backstage",
15
+ "techdocs"
16
+ ],
13
17
  "homepage": "https://backstage.io",
14
18
  "repository": {
15
19
  "type": "git",
16
20
  "url": "https://github.com/backstage/backstage",
17
21
  "directory": "plugins/techdocs-react"
18
22
  },
19
- "keywords": [
20
- "backstage",
21
- "techdocs"
22
- ],
23
23
  "license": "Apache-2.0",
24
+ "sideEffects": false,
24
25
  "main": "dist/index.esm.js",
25
26
  "types": "dist/index.d.ts",
26
- "sideEffects": false,
27
+ "files": [
28
+ "alpha",
29
+ "dist"
30
+ ],
27
31
  "scripts": {
28
32
  "build": "backstage-cli package build",
33
+ "clean": "backstage-cli package clean",
29
34
  "lint": "backstage-cli package lint",
30
- "test": "backstage-cli package test",
31
35
  "prepack": "backstage-cli package prepack",
32
36
  "postpack": "backstage-cli package postpack",
33
- "clean": "backstage-cli package clean",
34
- "start": "backstage-cli package start"
37
+ "start": "backstage-cli package start",
38
+ "test": "backstage-cli package test"
35
39
  },
36
40
  "dependencies": {
37
- "@backstage/catalog-model": "^1.4.4-next.0",
38
- "@backstage/config": "^1.1.1",
39
- "@backstage/core-components": "^0.14.0-next.2",
40
- "@backstage/core-plugin-api": "^1.9.0-next.1",
41
+ "@backstage/catalog-model": "^1.4.5-next.0",
42
+ "@backstage/config": "^1.1.2-next.0",
43
+ "@backstage/core-components": "^0.14.1-next.0",
44
+ "@backstage/core-plugin-api": "^1.9.1-next.0",
41
45
  "@backstage/version-bridge": "^1.0.7",
42
46
  "@material-ui/core": "^4.12.2",
43
47
  "@material-ui/styles": "^4.11.0",
@@ -47,21 +51,17 @@
47
51
  "react-helmet": "6.1.0",
48
52
  "react-use": "^17.2.4"
49
53
  },
54
+ "devDependencies": {
55
+ "@backstage/cli": "^0.25.3-next.0",
56
+ "@backstage/test-utils": "^1.5.1-next.0",
57
+ "@backstage/theme": "^0.5.2-next.0",
58
+ "@testing-library/jest-dom": "^6.0.0",
59
+ "@testing-library/react": "^14.0.0"
60
+ },
50
61
  "peerDependencies": {
51
62
  "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
52
63
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
53
64
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
54
65
  },
55
- "devDependencies": {
56
- "@backstage/cli": "^0.25.2-next.3",
57
- "@backstage/test-utils": "^1.5.0-next.3",
58
- "@backstage/theme": "^0.5.1-next.1",
59
- "@testing-library/jest-dom": "^6.0.0",
60
- "@testing-library/react": "^14.0.0"
61
- },
62
- "files": [
63
- "alpha",
64
- "dist"
65
- ],
66
66
  "module": "./dist/index.esm.js"
67
67
  }