Skip to content

Commit 043a7c3

Browse files
committed
Update DEV_GUIDE.md
1 parent a405fd9 commit 043a7c3

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

DEV_GUIDE.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@ You often need to execute a series of commands where one or more steps perform a
1313
- `AsyncCommand` — base class for a command that may finish later; call `commandComplete()` when done.
1414
- `AsyncMacroCommand` — orchestrates a FIFO list of sub‑commands. Supports both sync (`SimpleCommand`) and async (`AsyncCommand`/`AsyncMacroCommand`) sub‑commands.
1515

16-
Imports (ESM):
17-
```ts
18-
import { AsyncCommand } from "./src/command/AsyncCommand.js";
19-
import { AsyncMacroCommand } from "./src/command/AsyncMacroCommand.js";
20-
// Or, if consuming from the published package:
21-
// import { AsyncCommand, AsyncMacroCommand } from "@puremvc/puremvc-typescript-util-async-command";
16+
### Install
17+
```
18+
npm install @puremvc/puremvc-typescript-multicore-framework
19+
npm install @puremvc/puremvc-typescript-util-async-command
20+
```
2221

22+
### Imports (ESM):
23+
```ts
24+
import { AsyncCommand, AsyncMacroCommand } from "@puremvc/puremvc-typescript-util-async-command";
2325
import {
2426
SimpleCommand,
2527
INotification,

0 commit comments

Comments
 (0)