@holochain/hc-spin 0.200.2 → 0.200.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.
- package/README.md +20 -0
- package/dist/main/index.js +74 -1653
- package/dist/preload/index.js +4 -1
- package/package.json +2 -1
- package/src/main/index.ts +54 -6
- package/src/preload/index.ts +8 -1
package/README.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
CLI to run Holochain apps in development mode.
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
To install the latest version compatible with **holochain 0.1.x**:
|
|
8
|
+
|
|
9
|
+
⚠️ Requires `@holochain/client 0.12.6` or newer ⚠️
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
npm install --save-dev @holochain/hc-spin@">=0.100.0 <0.200.0"
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
To install the latest version compatible with **holochain 0.2.x**:
|
|
16
|
+
|
|
17
|
+
⚠️ Requires `@holochain/client 0.16.2` or newer ⚠️
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
npm install --save-dev @holochain/hc-spin@">=0.200.0 <0.300.0"
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usage (holochain 0.2)
|
|
24
|
+
|
|
5
25
|
```
|
|
6
26
|
Usage: hc-spin [options] <path>
|
|
7
27
|
|