forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
27 lines (26 loc) · 831 Bytes
/
Copy pathindex.js
File metadata and controls
27 lines (26 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import AddCommand from "./commands/AddCommand";
import BootstrapCommand from "./commands/BootstrapCommand";
import PublishCommand from "./commands/PublishCommand";
import UpdatedCommand from "./commands/UpdatedCommand";
import ImportCommand from "./commands/ImportCommand";
import CleanCommand from "./commands/CleanCommand";
import DiffCommand from "./commands/DiffCommand";
import InitCommand from "./commands/InitCommand";
import RunCommand from "./commands/RunCommand";
import ExecCommand from "./commands/ExecCommand";
import LsCommand from "./commands/LsCommand";
import LinkCommand from "./commands/LinkCommand";
export default {
AddCommand,
BootstrapCommand,
PublishCommand,
UpdatedCommand,
ImportCommand,
CleanCommand,
DiffCommand,
InitCommand,
RunCommand,
ExecCommand,
LsCommand,
LinkCommand,
};