piral-react-15 1.0.0 → 1.0.1-beta.5640

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/README.md +12 -1
  2. package/package.json +3 -7
package/README.md CHANGED
@@ -59,7 +59,18 @@ export function setup(piral: PiletApi) {
59
59
 
60
60
  ::: summary: For Piral instance developers
61
61
 
62
- Using React v15 with Piral is as simple as installing `piral-react-15` and `react-15`.
62
+ Using React v15 with Piral is as simple as installing `piral-react-15` and `react-15`. For `react-15` add the following two packages to your project's dependencies:
63
+
64
+ ```json
65
+ {
66
+ "dependencies": {
67
+ "react-15`": "npm:react@^15",
68
+ "react-dom-15": "npm:react@^15"
69
+ }
70
+ }
71
+ ```
72
+
73
+ Now you are ready to use the `piral-react-15` converter:
63
74
 
64
75
  ```ts
65
76
  import { createReact15Api } from 'piral-react-15';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-react-15",
3
- "version": "1.0.0",
3
+ "version": "1.0.1-beta.5640",
4
4
  "description": "Plugin for integrating React v15 components in Piral.",
5
5
  "keywords": [
6
6
  "piral",
@@ -64,13 +64,9 @@
64
64
  "test": "echo \"Error: run tests from root\" && exit 1"
65
65
  },
66
66
  "devDependencies": {
67
- "piral-core": "^1.0.0",
67
+ "piral-core": "1.0.1-beta.5640",
68
68
  "react-15": "npm:react@15",
69
69
  "react-dom-15": "npm:react-dom@15"
70
70
  },
71
- "peerDependencies": {
72
- "react-15": "npm:react@^15",
73
- "react-dom-15": "npm:react@^15"
74
- },
75
- "gitHead": "67d9a2920bd5231baf10bc87ae8985666b18fa3a"
71
+ "gitHead": "fa0a72b28fd0a20afec7ef491ec19e93c090fc72"
76
72
  }