-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.ts
More file actions
34 lines (29 loc) · 2.38 KB
/
Copy pathindex.ts
File metadata and controls
34 lines (29 loc) · 2.38 KB
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
28
29
30
31
32
33
34
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
// ─── oclif Command Classes ──────────────────────────────────────────
// Each command is auto-discovered by oclif from `src/commands/`.
// These re-exports provide programmatic access for testing and integration.
export { default as CompileCommand } from './commands/compile.js';
export { default as ValidateCommand } from './commands/validate.js';
export { default as InfoCommand } from './commands/info.js';
export { default as InitCommand } from './commands/init.js';
export { default as GenerateCommand } from './commands/generate.js';
export { default as CreateCommand } from './commands/create.js';
export { default as BuildCommand } from './commands/build.js';
export { default as DevCommand } from './commands/dev.js';
export { default as ServeCommand } from './commands/serve.js';
export { default as StartCommand } from './commands/start.js';
export { default as TestCommand } from './commands/test.js';
export { default as DoctorCommand } from './commands/doctor.js';
// ─── Environments topic subcommands ─────────────────────────────────
export { default as EnvironmentsListCommand } from './commands/environments/list.js';
export { default as EnvironmentsShowCommand } from './commands/environments/show.js';
export { default as EnvironmentsCreateCommand } from './commands/environments/create.js';
export { default as EnvironmentsSwitchCommand } from './commands/environments/switch.js';
export { default as EnvironmentsBindCommand } from './commands/environments/bind.js';
// ─── Cloud topic subcommands ────────────────────────────────────────
export { default as CloudLoginCommand } from './commands/cloud/login.js';
export { default as CloudLogoutCommand } from './commands/cloud/logout.js';
export { default as CloudWhoamiCommand } from './commands/cloud/whoami.js';
// ─── Package topic subcommands ──────────────────────────────────────
export { default as PackagePublishCommand } from './commands/package/publish.js';
export { default as PackageInstallCommand } from './commands/package/install.js';