Skip to content

Commit

Permalink
feat: allow functions accessed by cli tool to be used in library
Browse files Browse the repository at this point in the history
  • Loading branch information
markemer committed Aug 21, 2024
1 parent f1b68e8 commit d89a635
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ import { loadContext, setArguments } from './ctx';
import { wrapAction } from './util/cli';
import { logger, log } from './util/log';

export * from './definitions';
export * from './asset-generator';
export * from './project';
export * from './input-asset';
export * from './output-asset';
export * from './tasks/generate';

export * from './platforms/ios';
export * from './platforms/android';
export * from './platforms/android';

export async function run(): Promise<void> {
try {
const ctx = await loadContext();
Expand Down

0 comments on commit d89a635

Please sign in to comment.