genlayer 0.0.22 → 0.0.24
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/CHANGELOG.md +9 -0
- package/README.md +15 -0
- package/dist/index.js +845 -301
- package/esbuild.config.dev +4 -0
- package/esbuild.config.prod +4 -0
- package/package.json +2 -1
- package/src/commands/general/index.ts +8 -0
- package/src/commands/general/init.ts +17 -5
- package/src/commands/general/start.ts +99 -0
- package/src/lib/clients/system.ts +6 -1
- package/src/lib/config/simulator.ts +8 -13
- package/src/lib/services/simulator.ts +31 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## 0.0.24 (2024-05-06)
|
|
4
|
+
|
|
5
|
+
## 0.0.23 (2024-05-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* windows installation ([#19](https://github.com/yeagerai/genlayer-cli/issues/19)) ([3eafe6d](https://github.com/yeagerai/genlayer-cli/commit/3eafe6df9f5f657139177a588d6d53a652a25bd3))
|
|
11
|
+
|
|
3
12
|
## 0.0.22 (2024-04-30)
|
|
4
13
|
|
|
5
14
|
|
package/README.md
CHANGED
|
@@ -26,6 +26,21 @@ This command will download the necessary components and start the simulator. Onc
|
|
|
26
26
|
|
|
27
27
|
Contributions to the GenLayer CLI are welcome! Please feel free to fork the repository, make your changes, and submit a pull request. We appreciate your efforts to improve the software.
|
|
28
28
|
|
|
29
|
+
### Running the CLI from the repository
|
|
30
|
+
|
|
31
|
+
First, install the dependencies and start the build process
|
|
32
|
+
```bash
|
|
33
|
+
npm install
|
|
34
|
+
npm run dev
|
|
35
|
+
```
|
|
36
|
+
This will continuously rebuild the CLI from the source
|
|
37
|
+
|
|
38
|
+
Then in another window execute the CLI commands like so:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
node dist/index.js init
|
|
42
|
+
```
|
|
43
|
+
|
|
29
44
|
## License
|
|
30
45
|
|
|
31
46
|
This project is licensed under the ... License - see the [LICENSE](LICENSE) file for details.
|