@backstage/plugin-signals-react 0.0.1-next.3 → 0.0.2-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 +20 -0
  2. package/package.json +20 -20
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @backstage/plugin-signals-react
2
2
 
3
+ ## 0.0.2-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-plugin-api@1.9.1-next.0
9
+ - @backstage/types@1.1.1
10
+
11
+ ## 0.0.1
12
+
13
+ ### Patch Changes
14
+
15
+ - 447d210: Fix disconnect loop on server start
16
+ - 8472188: Added or fixed the `repository` field in `package.json`.
17
+ - 047bead: Add support to subscribe and publish messages through signals plugins
18
+ - 1ab22c4: Allow defining signal type to publish and receive
19
+ - Updated dependencies
20
+ - @backstage/core-plugin-api@1.9.0
21
+ - @backstage/types@1.1.1
22
+
3
23
  ## 0.0.1-next.3
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@backstage/plugin-signals-react",
3
+ "version": "0.0.2-next.0",
3
4
  "description": "Web library for the signals plugin",
4
- "version": "0.0.1-next.3",
5
- "main": "dist/index.esm.js",
6
- "types": "dist/index.d.ts",
7
- "license": "Apache-2.0",
5
+ "backstage": {
6
+ "role": "web-library"
7
+ },
8
8
  "publishConfig": {
9
9
  "access": "public",
10
10
  "main": "dist/index.esm.js",
@@ -15,35 +15,35 @@
15
15
  "url": "https://github.com/backstage/backstage",
16
16
  "directory": "plugins/signals-react"
17
17
  },
18
- "backstage": {
19
- "role": "web-library"
20
- },
18
+ "license": "Apache-2.0",
21
19
  "sideEffects": false,
20
+ "main": "dist/index.esm.js",
21
+ "types": "dist/index.d.ts",
22
+ "files": [
23
+ "dist"
24
+ ],
22
25
  "scripts": {
23
- "start": "backstage-cli package start",
24
26
  "build": "backstage-cli package build",
25
- "lint": "backstage-cli package lint",
26
- "test": "backstage-cli package test",
27
27
  "clean": "backstage-cli package clean",
28
+ "lint": "backstage-cli package lint",
28
29
  "prepack": "backstage-cli package prepack",
29
- "postpack": "backstage-cli package postpack"
30
+ "postpack": "backstage-cli package postpack",
31
+ "start": "backstage-cli package start",
32
+ "test": "backstage-cli package test"
30
33
  },
31
34
  "dependencies": {
32
- "@backstage/core-plugin-api": "^1.9.0-next.1",
35
+ "@backstage/core-plugin-api": "^1.9.1-next.0",
33
36
  "@backstage/types": "^1.1.1",
34
37
  "@material-ui/core": "^4.12.4"
35
38
  },
36
- "peerDependencies": {
37
- "react": "^16.13.1 || ^17.0.0"
38
- },
39
39
  "devDependencies": {
40
- "@backstage/cli": "^0.25.2-next.3",
41
- "@backstage/test-utils": "^1.5.0-next.3",
40
+ "@backstage/cli": "^0.25.3-next.0",
41
+ "@backstage/test-utils": "^1.5.1-next.0",
42
42
  "@testing-library/jest-dom": "^6.0.0",
43
43
  "@testing-library/react": "^14.0.0"
44
44
  },
45
- "files": [
46
- "dist"
47
- ],
45
+ "peerDependencies": {
46
+ "react": "^16.13.1 || ^17.0.0"
47
+ },
48
48
  "module": "./dist/index.esm.js"
49
49
  }