Skip to content

Commit 2e325cb

Browse files
docs: cli dev replaced by emulator (#521)
* docs: cli dev replaced by emulator Signed-off-by: David Dal Busco <david.dalbusco@outlook.com> * πŸ“„ Update LLMs.txt snapshot for PR review --------- Signed-off-by: David Dal Busco <david.dalbusco@outlook.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 5c8f731 commit 2e325cb

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

β€Ž.llms-snapshots/llms-full.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7794,7 +7794,7 @@ Usage: juno changes reject [options]Options: -i, --id The ID of th
77947794

77957795
---
77967796

7797-
## Development
7797+
## Emulator
77987798

77997799
Handle developer tasks like starting/stopping a local network.
78007800

β€Ždocs/reference/cli.mdxβ€Ž

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -202,27 +202,27 @@ import ChangesReject from "./cli/changes-reject.md";
202202

203203
---
204204

205-
## Development
205+
## Emulator
206206

207-
import Dev from "./cli/dev.md";
207+
import Emulator from "./cli/emulator.md";
208208

209-
<Dev />
209+
<Emulator />
210210

211211
---
212212

213213
### Start
214214

215-
import DevStart from "./cli/dev-start.md";
215+
import EmulatorStart from "./cli/emulator-start.md";
216216

217-
<DevStart />
217+
<EmulatorStart />
218218

219219
---
220220

221221
### Wait
222222

223-
import DevWait from "./cli/dev-wait.md";
223+
import EmulatorWait from "./cli/emulator-wait.md";
224224

225-
<DevWait />
225+
<EmulatorWait />
226226

227227
---
228228

File renamed without changes.
File renamed without changes.

β€Žscripts/cli-to-md.shβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ function generate_command_markdown() {
77
eval "juno "$cmd" --headless --help --doc" | sed 's/\x1b\[[0-9;]*m//g' > docs/reference/cli/"$output".md
88
}
99

10-
COMMANDS=clear,config,deploy,dev,functions,changes,init,login,logout,open,snapshot,start,stop,upgrade,version,status,whoami
10+
COMMANDS=clear,config,deploy,emulator,functions,changes,init,login,logout,open,snapshot,start,stop,upgrade,version,status,whoami
1111

1212
for cmd in $(echo $COMMANDS | sed "s/,/ /g"); do
1313
generate_command_markdown "$cmd"
1414
done
1515

16-
DEV_COMMANDS=start,wait
16+
EMULATOR_COMMANDS=start,wait
1717

18-
for cmd in $(echo $DEV_COMMANDS | sed "s/,/ /g"); do
19-
generate_command_markdown "dev $cmd"
18+
for cmd in $(echo $EMULATOR_COMMANDS | sed "s/,/ /g"); do
19+
generate_command_markdown "emulator $cmd"
2020
done
2121

2222
FUNCTIONS_COMMANDS=build,eject,publish,upgrade

0 commit comments

Comments
Β (0)