@holochain/hc-spin 0.500.0-dev.0 → 0.500.0-rc.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.
@@ -0,0 +1,25 @@
1
+ name: 'test'
2
+ on:
3
+ pull_request: {}
4
+
5
+ jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
10
+ # Checks out a copy of your repository on the ubuntu-latest machine
11
+ - uses: actions/checkout@v3
12
+
13
+ - name: Install dependencies and build
14
+ run: yarn && yarn build
15
+
16
+ ci_pass:
17
+ if: ${{ always() }}
18
+ runs-on: 'ubuntu-latest'
19
+ needs:
20
+ - test
21
+ steps:
22
+ - name: check status
23
+ uses: re-actors/alls-green@release/v1
24
+ with:
25
+ jobs: ${{ toJSON(needs) }}
package/CHANGELOG.md ADDED
@@ -0,0 +1,20 @@
1
+ # Changelog
2
+
3
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
+
5
+ ## \[Unreleased\]
6
+
7
+ ### Added
8
+ ### Fixed
9
+ ### Changed
10
+ ### Removed
11
+
12
+ ## 2025-04-10: v0.500.0-rc.0
13
+
14
+ ### Changed
15
+ - Updated to be compatible with holochain 0.5.0-rc.0
16
+
17
+ ## 2025-03-05: v0.500.0-dev.1
18
+
19
+ ### Changed
20
+ - Updated `@holochain/client` and `@holochain/hc-spin-rust-utils` to be compatible with holochain 0.5.0-dev.21
package/README.md CHANGED
@@ -4,31 +4,23 @@ CLI to run Holochain apps in development mode.
4
4
 
5
5
  ## Installation
6
6
 
7
- To install the latest version compatible with **holochain 0.1.x**:
7
+ To install the latest version compatible with **holochain 0.4.x**:
8
8
 
9
- ⚠️ Requires `@holochain/client 0.12.6` or newer ⚠️
9
+ ⚠️ Requires `@holochain/client 0.18.0` or newer ⚠️
10
10
 
11
11
  ```
12
- npm install --save-dev @holochain/hc-spin@">=0.100.0 <0.200.0"
12
+ npm install --save-dev @holochain/hc-spin@">=0.400.0 <0.500.0"
13
13
  ```
14
14
 
15
- To install the latest version compatible with **holochain 0.2.x**:
15
+ To install the latest version compatible with **holochain 0.5.x**:
16
16
 
17
- ⚠️ Requires `@holochain/client 0.16.2` or newer ⚠️
17
+ ⚠️ Requires `@holochain/client 0.19.0-dev.7` or newer ⚠️
18
18
 
19
19
  ```
20
- npm install --save-dev @holochain/hc-spin@">=0.200.0 <0.300.0"
20
+ npm install --save-dev @holochain/hc-spin@">=0.500.0 <0.600.0"
21
21
  ```
22
22
 
23
- To install the latest version compatible with **holochain 0.3.x**:
24
-
25
- ⚠️ Requires `@holochain/client 0.17.0-dev.5` or newer ⚠️
26
-
27
- ```
28
- npm install --save-dev @holochain/hc-spin@">=0.300.0 <0.400.0"
29
- ```
30
-
31
- ## Usage (holochain 0.2)
23
+ ## Usage (holochain 0.5)
32
24
 
33
25
  ```
34
26
  Usage: hc-spin [options] <path>
@@ -52,6 +44,7 @@ Options:
52
44
  --ui-port <number> Port pointing to a localhost dev server that serves your UI assets.
53
45
  --signaling-url <url> Url of the signaling server to use. By default, hc spin spins up a local development signaling server for you
54
46
  but this argument allows you to specify a custom one.
47
+ --open-devtools Automatically open the devtools on startup.
55
48
  -h, --help display help for command
56
49
  ```
57
50
 
package/dist/cli.js CHANGED
File without changes