@clarigen/cli 1.0.0-next.9 → 2.0.1
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 +1 -31
- package/dist/index.cjs +1304 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +432 -0
- package/dist/index.js +1239 -17
- package/dist/index.js.map +1 -0
- package/dist/run-cli.cjs +1451 -0
- package/dist/run-cli.cjs.map +1 -0
- package/dist/run-cli.d.ts +1 -0
- package/dist/run-cli.js +1455 -0
- package/dist/run-cli.js.map +1 -0
- package/package.json +36 -51
- package/bin/run +0 -7
- package/dist/clarinet-config.js +0 -70
- package/dist/commands/index.js +0 -65
- package/dist/config.js +0 -54
- package/dist/generate/declaration.js +0 -120
- package/dist/generate/files.js +0 -147
- package/dist/start.js +0 -9
- package/dist/utils.js +0 -53
- package/src/clarinet-config.ts +0 -127
- package/src/commands/index.ts +0 -67
- package/src/config.ts +0 -78
- package/src/generate/declaration.ts +0 -116
- package/src/generate/files.ts +0 -181
- package/src/index.ts +0 -5
- package/src/start.ts +0 -5
- package/src/utils.ts +0 -78
package/README.md
CHANGED
|
@@ -1,31 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
For setup instructions, check out the [Clarigen setup guide](https://github.com/hstove/clarigen#setup-guide).
|
|
4
|
-
|
|
5
|
-
Most of the time, you'll only need to run `clarigen` to automatically build your files. You can also run `clarigen --watch` to automatically generate files whenever you save one of your Clarity contracts.
|
|
6
|
-
|
|
7
|
-
# Usage
|
|
8
|
-
|
|
9
|
-
<!-- commands -->
|
|
10
|
-
|
|
11
|
-
<!-- commandsstop -->
|
|
12
|
-
|
|
13
|
-
## Development
|
|
14
|
-
|
|
15
|
-
To run the CLI:
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
yarn start ARGS_AND_FLAGS
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
This package uses `@vercel/ncc` to package the CLI into a single file. `yarn build` will also automatically update this README.
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
yarn build
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
To run the executable:
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
./bin/run ARGS_AND_FLAGS
|
|
31
|
-
```
|
|
1
|
+
For documentation, visit [clarigen.dev](https://clarigen.dev)
|